summaryrefslogtreecommitdiff
path: root/test/mkmf/test_config.rb
blob: 07ed6414151eb92b1ea5b2bfa72dc45405476f8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: false
$extmk = true

require 'test/unit'
require 'mkmf'

class TestMkmf < Test::Unit::TestCase
  class TestConfig < Test::Unit::TestCase
    def test_dir_config
      bug8074 = '[Bug #8074]'
      lib = RbConfig.expand(RbConfig::MAKEFILE_CONFIG["libdir"], "exec_prefix"=>"")
      assert_separately %w[-rmkmf - -- --with-foo-dir=/test/foo], %{
        assert_equal(%w[/test/foo/include /test/foo#{lib}], dir_config("foo"), #{bug8074.dump})
      }
    end
  end
end