summaryrefslogtreecommitdiffstats
path: root/lib/runit
diff options
context:
space:
mode:
authorntalbott <ntalbott@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-05 02:17:07 +0000
committerntalbott <ntalbott@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-05 02:17:07 +0000
commit3602e952c56b388746f65c2c5d3779b7dcecc635 (patch)
treefb22b342c09e128badede324be27d35a57ba0d74 /lib/runit
parentbf620f001127c9a6aee757e5d6319e23c153fdfa (diff)
downloadruby-3602e952c56b388746f65c2c5d3779b7dcecc635.tar.gz
ruby-3602e952c56b388746f65c2c5d3779b7dcecc635.tar.xz
ruby-3602e952c56b388746f65c2c5d3779b7dcecc635.zip
* lib/rubyunit.rb: aliasing TestCase into the top level is
problematic. * lib/runit/assert.rb: fixed a couple of bugs caused by recent refactoring in Test::Unit. * test/testunit/runit/*: added. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4689 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/runit')
-rw-r--r--lib/runit/assert.rb16
1 files changed, 9 insertions, 7 deletions
diff --git a/lib/runit/assert.rb b/lib/runit/assert.rb
index ede7df1c9..c752b19a2 100644
--- a/lib/runit/assert.rb
+++ b/lib/runit/assert.rb
@@ -16,15 +16,13 @@ module RUNIT
assert_nothing_raised(*args, &block)
end
- # To deal with the fact that RubyUnit does not check that the regular expression
- # is, indeed, a regular expression, if it is not, we do our own assertion using
- # the same semantics as RubyUnit
+ # To deal with the fact that RubyUnit does not check that the
+ # regular expression is, indeed, a regular expression, if it is
+ # not, we do our own assertion using the same semantics as
+ # RubyUnit
def assert_match(actual_string, expected_re, message="")
_wrap_assertion {
- full_message = build_message(message, actual_string, expected_re) {
- | arg1, arg2 |
- "Expected <#{arg1}> to match <#{arg2}>"
- }
+ full_message = build_message(message, "Expected <?> to match <?>", actual_string, expected_re)
assert_block(full_message) {
expected_re =~ actual_string
}
@@ -32,6 +30,10 @@ module RUNIT
}
end
+ def assert_not_nil(actual, message="")
+ assert(!actual.nil?, message)
+ end
+
def assert_not_match(actual_string, expected_re, message="")
assert_no_match(expected_re, actual_string, message)
end