aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_regexp.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_regexp.rb')
-rw-r--r--test/ruby/test_regexp.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/ruby/test_regexp.rb b/test/ruby/test_regexp.rb
index 031d98c439..2cd8e13352 100644
--- a/test/ruby/test_regexp.rb
+++ b/test/ruby/test_regexp.rb
@@ -586,7 +586,7 @@ class TestRegexp < Test::Unit::TestCase
assert_predicate(m, :tainted?)
end
- def check(re, ss, fs = [], msg = nil)
+ def assert_regexp(re, ss, fs = [], msg = nil)
re = Regexp.new(re) unless re.is_a?(Regexp)
ss = [ss] unless ss.is_a?(Array)
ss.each do |e, s|
@@ -598,10 +598,12 @@ class TestRegexp < Test::Unit::TestCase
fs = [fs] unless fs.is_a?(Array)
fs.each {|s| assert_no_match(re, s, msg) }
end
+ alias check assert_regexp
- def failcheck(re)
+ def assert_fail(re)
assert_raise(RegexpError) { %r"#{ re }" }
end
+ alias failcheck assert_fail
def test_parse
check(/\*\+\?\{\}\|\(\)\<\>\`\'/, "*+?{}|()<>`'")