summaryrefslogtreecommitdiff
path: root/test/mkmf/test_have_var.rb
blob: 5367ec2248432ed282190a9afbfc018871d6818d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: false
require_relative 'base'
require 'tempfile'

class TestMkmf
  class TestHaveVar < TestMkmf
    def test_have_var
      assert_equal(true, have_var("ruby_version"), MKMFLOG)
      assert_include($defs, '-DHAVE_RUBY_VERSION')
    end

    def test_not_have_var
      assert_equal(false, have_var("rb_vm_something_flag"), MKMFLOG)
      assert_not_include($defs, '-DHAVE_RB_VM_SOMETHING_FLAG')
    end
  end
end