summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-01-28 21:00:37 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-02-05 13:59:27 +0900
commit7baedeffe93dbb03c2e69129c3100596c1ff0e71 (patch)
treefcb5e4baafba32c2364a51bcb64b6b1132d55447
parent0acc05caf7518cd0d63ab02bfa036455add02346 (diff)
Added tests for MakeMakefile#test_egrep_cpp
-rw-r--r--test/mkmf/test_egrep_cpp.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/mkmf/test_egrep_cpp.rb b/test/mkmf/test_egrep_cpp.rb
new file mode 100644
index 0000000000..ce276bef20
--- /dev/null
+++ b/test/mkmf/test_egrep_cpp.rb
@@ -0,0 +1,15 @@
+# frozen_string_literal: false
+require_relative 'base'
+require 'tempfile'
+
+class TestMkmf
+ class TestEgrepCpp < TestMkmf
+ def test_egrep_cpp
+ assert_equal(true, egrep_cpp(/ruby_init/, ""), MKMFLOG)
+ end
+
+ def test_not_have_func
+ assert_equal(false, egrep_cpp(/never match/, ""), MKMFLOG)
+ end
+ end
+end