Module: Test::Unit::Assertions
- Included in:
- TestCase
- Defined in:
- lib/test/unit/assertions.rb
Overview
Test::Unit::Assertions contains the standard Test::Unit assertions. Assertions is included in Test::Unit::TestCase.
To include it in your own code and use its functionality, you simply need to rescue Test::Unit::AssertionFailedError. Additionally you may override add_assertion to get notified whenever an assertion is made.
Notes:
-
The message to each assertion, if given, will be propagated with the failure.
-
It is easy to add your own assertions based on assert_block().
Defined Under Namespace
Classes: AssertExceptionHelper, AssertionMessage, ThrowTagExtractor
Constant Summary collapse
- NOT_SPECIFIED =
Object.new
Class Method Summary collapse
-
.use_pp=(value) ⇒ Object
Select whether or not to use the pretty-printer.
Instance Method Summary collapse
-
#add_assertion ⇒ void
Called whenever an assertion is made.
- #assert(object = NOT_SPECIFIED, message = nil, &block) ⇒ Object
-
#assert_alias_method(object, alias_name, original_name, message = nil) ⇒ Object
Passes if ‘object`#`alias_name` is an alias method of `object`#`original_name`.
-
#assert_block(message = "assert_block failed.") ⇒ Object
The assertion upon which all other assertions are based.
-
#assert_boolean(actual, message = nil) ⇒ Object
Passes if ‘actual` is a boolean value.
-
#assert_compare(expected, operator, actual, message = nil) ⇒ Object
Passes if expression “‘expected` `operator` `actual`” is true.
-
#assert_const_defined(object, constant_name, message = nil) ⇒ Object
Passes if ‘object`.const_defined?(`constant_name`).
-
#assert_empty(object, message = nil) ⇒ Object
Passes if ‘object` is empty.
-
#assert_equal(expected, actual, message = nil) ⇒ Object
Passes if ‘expected` == `actual`.
-
#assert_fail_assertion(message = nil) ⇒ Object
Passes if assertion is failed in block.
-
#assert_false(actual, message = nil) ⇒ Object
Passes if ‘actual` is false.
-
#assert_in_delta(expected_float, actual_float, delta = 0.001, message = "") ⇒ Object
Passes if ‘expected_float` and `actual_float` are equal within `delta` tolerance.
-
#assert_in_epsilon(expected_float, actual_float, epsilon = 0.001, message = "") ⇒ Object
Passes if ‘expected_float` and `actual_float` are equal within `epsilon` relative error of `expected_float`.
-
#assert_include(collection, object, message = nil) ⇒ Object
(also: #assert_includes)
Passes if ‘collection` includes `object`.
-
#assert_instance_of(klass, object, message = nil) ⇒ Object
Passes if ‘object`.instance_of?(`klass`).
-
#assert_kind_of(klass, object, message = nil) ⇒ Object
Passes if ‘object`.kind_of?(`klass`).
-
#assert_match(pattern, string, message = nil) ⇒ Object
Passes if ‘pattern` =~ `string`.
-
#assert_nil(object, message = nil) ⇒ Object
Passes if ‘object` is nil.
-
#assert_no_match(regexp, string, message = "") ⇒ Object
Deprecated.
-
#assert_not_const_defined(object, constant_name, message = nil) ⇒ Object
Passes if !‘object`.const_defined?(`constant_name`).
-
#assert_not_empty(object, message = nil) ⇒ Object
(also: #refute_empty)
Passes if ‘object` is not empty.
-
#assert_not_equal(expected, actual, message = nil) ⇒ Object
(also: #refute_equal)
Passes if ‘expected` != `actual`.
-
#assert_not_in_delta(expected_float, actual_float, delta = 0.001, message = "") ⇒ Object
(also: #refute_in_delta)
Passes if ‘expected_float` and `actual_float` are not equal within `delta` tolerance.
-
#assert_not_in_epsilon(expected_float, actual_float, epsilon = 0.001, message = "") ⇒ Object
(also: #refute_in_epsilon)
Passes if ‘expected_float` and `actual_float` are not equal within `epsilon` relative error of `expected_float`.
-
#assert_not_include(collection, object, message = nil) ⇒ Object
(also: #assert_not_includes, #refute_includes)
Passes if ‘collection` doesn’t include ‘object`.
-
#assert_not_instance_of(klass, object, message = nil) ⇒ Object
(also: #refute_instance_of)
Passes if ‘object`.instance_of?(`klass`) does not hold.
-
#assert_not_kind_of(klass, object, message = nil) ⇒ Object
(also: #refute_kind_of)
Passes if ‘object`.kind_of?(`klass`) does not hold.
-
#assert_not_match(regexp, string, message = nil) ⇒ Object
(also: #refute_match)
Passes if ‘regexp` !~ `string`.
-
#assert_not_nil(object, message = nil) ⇒ Object
(also: #refute_nil)
Passes if ! ‘object` .nil?.
-
#assert_not_operator(object1, operator, object2, message = nil) ⇒ Object
(also: #refute_operator)
Compares the ‘object1` with `object2` using `operator`.
-
#assert_not_predicate(object, predicate, message = nil) ⇒ Object
(also: #refute_predicate)
Passes if ‘object`.`predicate` is not true.
-
#assert_not_respond_to(object, method, message = nil) ⇒ Object
(also: #refute_respond_to)
Passes if ‘object` does not .respond_to? `method`.
-
#assert_not_same(expected, actual, message = nil) ⇒ Object
(also: #refute_same)
Passes if ! ‘actual` .equal? `expected`.
-
#assert_not_send(send_array, message = nil) ⇒ Object
Passes if the method send doesn’t return a true value.
-
#assert_nothing_raised(*args) ⇒ Object
Passes if block does not raise an exception.
-
#assert_nothing_thrown(message = nil, &proc) ⇒ Object
Passes if block does not throw anything.
-
#assert_operator(object1, operator, object2, message = nil) ⇒ Object
Compares the ‘object1` with `object2` using `operator`.
-
#assert_path_exist(path, message = nil) ⇒ Object
Passes if ‘path` exists.
-
#assert_path_not_exist(path, message = nil) ⇒ Object
Passes if ‘path` doesn’t exist.
-
#assert_predicate(object, predicate, message = nil) ⇒ Object
Passes if ‘object`.`predicate` is true.
-
#assert_raise(*args, &block) ⇒ Object
(also: #assert_raises)
Passes if the block raises one of the expected exceptions.
-
#assert_raise_kind_of(*args, &block) ⇒ Object
Passes if the block raises one of the given exceptions or sub exceptions of the given exceptions.
-
#assert_raise_message(expected, message = nil) ⇒ Object
Passes if an exception is raised in block and its message is ‘expected`.
-
#assert_respond_to(object, method, message = nil) ⇒ Object
Passes if ‘object` .respond_to? `method`.
-
#assert_same(expected, actual, message = nil) ⇒ Object
Passes if ‘actual` .equal? `expected` (i.e. they are the same instance).
-
#assert_send(send_array, message = nil) ⇒ Object
Passes if the method send returns a true value.
-
#assert_throw(expected_object, message = nil, &proc) ⇒ Object
(also: #assert_throws)
Passes if the block throws ‘expected_object`.
-
#assert_true(actual, message = nil) ⇒ Object
Passes if ‘actual` is true.
-
#build_message(user_message, template = nil, *arguments) ⇒ Object
Builds a failure message.
-
#flunk(message = "Flunked") ⇒ Object
Flunk always fails.
-
#refute(object, message = nil) ⇒ void
Asserts that ‘object` is false or nil.
Class Method Details
.use_pp=(value) ⇒ Object
Select whether or not to use the pretty-printer. If this option is set to false before any assertions are made, pp.rb will not be required.
1661 1662 1663 |
# File 'lib/test/unit/assertions.rb', line 1661 def self.use_pp=(value) AssertionMessage.use_pp = value end |
Instance Method Details
#add_assertion ⇒ void
This method returns an undefined value.
Called whenever an assertion is made. Define this in classes that include Test::Unit::Assertions to record assertion counts.
This is a public API for developers who extend test-unit.
1655 1656 |
# File 'lib/test/unit/assertions.rb', line 1655 def add_assertion end |
#assert(object, message = nil) ⇒ void #assert(message = nil) { ... } ⇒ void
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 |
# File 'lib/test/unit/assertions.rb', line 133 def assert(object=NOT_SPECIFIED, =nil, &block) _wrap_assertion do have_object = !NOT_SPECIFIED.equal?(object) if block = object if have_object if defined?(PowerAssert) PowerAssert.start(block, :assertion_method => __callee__) do |pa| = AssertionMessage.delayed_literal(&pa.) = (, "?", ) assert_block() do pa.yield end end else assert(yield, ) end else unless have_object raise ArgumentError, "wrong number of arguments (0 for 1..2)" end = nil case when nil, String, Proc when AssertionMessage = else = "assertion message must be String, Proc or " += "#{AssertionMessage}: " += "<#{.inspect}>(<#{.class}>)" raise ArgumentError, , filter_backtrace(caller) end ||= (, "<?> is not true.", object) assert_block() do object end end end end |
#assert_alias_method(object, alias_name, original_name, message = nil) ⇒ Object
Passes if ‘object`#`alias_name` is an alias method of `object`#`original_name`.
1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 |
# File 'lib/test/unit/assertions.rb', line 1436 def assert_alias_method(object, alias_name, original_name, =nil) _wrap_assertion do = Proc.new do |method_name| (, "<?>.? doesn't exist\n" + "(Class: <?>)", object, AssertionMessage.literal(method_name), object.class) end alias_method = original_method = nil assert_block(.call(alias_name)) do begin alias_method = object.method(alias_name) true rescue NameError false end end assert_block(.call(original_name)) do begin original_method = object.method(original_name) true rescue NameError false end end = (, "<?> is alias of\n" + "<?> expected", alias_method, original_method) assert_block() do alias_method == original_method end end end |
#assert_block(message = "assert_block failed.") ⇒ Object
The assertion upon which all other assertions are based. Passes if the block yields true.
52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/test/unit/assertions.rb', line 52 def assert_block(="assert_block failed.") _wrap_assertion do if (! yield) = {} if .respond_to?(:user_message) [:user_message] = . end raise AssertionFailedError.new(.to_s, ) end end end |
#assert_boolean(actual, message = nil) ⇒ Object
Passes if ‘actual` is a boolean value.
1207 1208 1209 1210 1211 1212 1213 1214 1215 |
# File 'lib/test/unit/assertions.rb', line 1207 def assert_boolean(actual, =nil) _wrap_assertion do assert_block((, "<true> or <false> expected but was\n<?>", actual)) do [true, false].include?(actual) end end end |
#assert_compare(expected, operator, actual, message = nil) ⇒ Object
Passes if expression “‘expected` `operator` `actual`” is true.
1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 |
# File 'lib/test/unit/assertions.rb', line 1256 def assert_compare(expected, operator, actual, =nil) _wrap_assertion do assert_send([["<", "<=", ">", ">="], :include?, operator.to_s]) case operator.to_s when "<" operator_description = "less than" when "<=" operator_description = "less than or equal to" when ">" operator_description = "greater than" when ">=" operator_description = "greater than or equal to" end template = <<-EOT <?> #{operator} <?> should be true <?> was expected to be #{operator_description} <?>. EOT = (, template, expected, actual, expected, actual) assert_block() do expected.__send__(operator, actual) end end end |
#assert_const_defined(object, constant_name, message = nil) ⇒ Object
Passes if ‘object`.const_defined?(`constant_name`)
1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 |
# File 'lib/test/unit/assertions.rb', line 1351 def assert_const_defined(object, constant_name, =nil) _wrap_assertion do = (, "<?>.const_defined\\?(<?>) expected.", object, constant_name) assert_block() do object.const_defined?(constant_name) end end end |
#assert_empty(object, message = nil) ⇒ Object
Passes if ‘object` is empty.
1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 |
# File 'lib/test/unit/assertions.rb', line 1581 def assert_empty(object, =nil) _wrap_assertion do assert_respond_to(object, :empty?, "The object must respond to :empty?.") = (, "<?> was expected to be empty.", object) assert_block() do object.empty? end end end |
#assert_equal(expected, actual, message = nil) ⇒ Object
Passes if ‘expected` == `actual`.
Note that the ordering of arguments is important, since a helpful error message is generated when this one fails that tells you the values of expected and actual.
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 |
# File 'lib/test/unit/assertions.rb', line 224 def assert_equal(expected, actual, =nil) diff = AssertionMessage.delayed_diff(expected, actual) if expected.respond_to?(:encoding) and actual.respond_to?(:encoding) and expected.encoding != actual.encoding format = <<EOT <?>(?) expected but was <?>(?).? EOT = (, format, expected, expected.encoding.name, actual, actual.encoding.name, diff) else = (, <<EOT, expected, actual, diff) <?> expected but was <?>.? EOT end begin assert_block() { expected == actual } rescue AssertionFailedError => failure _set_failed_information(failure, expected, actual) raise failure # For JRuby. :< end end |
#assert_fail_assertion(message = nil) ⇒ Object
Passes if assertion is failed in block.
1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 |
# File 'lib/test/unit/assertions.rb', line 1289 def assert_fail_assertion(=nil) _wrap_assertion do = (, "Failed assertion was expected.") assert_block() do begin yield false rescue AssertionFailedError true end end end end |
#assert_false(actual, message = nil) ⇒ Object
Passes if ‘actual` is false.
1239 1240 1241 1242 1243 1244 1245 1246 1247 |
# File 'lib/test/unit/assertions.rb', line 1239 def assert_false(actual, =nil) _wrap_assertion do assert_block((, "<false> expected but was\n<?>", actual)) do actual == false end end end |
#assert_in_delta(expected_float, actual_float, delta = 0.001, message = "") ⇒ Object
Passes if ‘expected_float` and `actual_float` are equal within `delta` tolerance.
868 869 870 871 872 873 874 875 876 877 878 879 880 881 |
# File 'lib/test/unit/assertions.rb', line 868 def assert_in_delta(expected_float, actual_float, delta=0.001, ="") _wrap_assertion do _assert_in_delta_validate_arguments(expected_float, actual_float, delta) = (expected_float, actual_float, delta, ) assert_block() do (expected_float.to_f - actual_float.to_f).abs <= delta.to_f end end end |
#assert_in_epsilon(expected_float, actual_float, epsilon = 0.001, message = "") ⇒ Object
Passes if ‘expected_float` and `actual_float` are equal within `epsilon` relative error of `expected_float`.
990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 |
# File 'lib/test/unit/assertions.rb', line 990 def assert_in_epsilon(expected_float, actual_float, epsilon=0.001, ="") _wrap_assertion do _assert_in_epsilon_validate_arguments(expected_float, actual_float, epsilon) = (expected_float, actual_float, epsilon, ) assert_block() do normalized_expected_float = expected_float.to_f if normalized_expected_float.zero? delta = epsilon.to_f ** 2 else delta = normalized_expected_float * epsilon.to_f end delta = delta.abs (normalized_expected_float - actual_float.to_f).abs <= delta end end end |
#assert_include(collection, object, message = nil) ⇒ Object Also known as: assert_includes
Passes if ‘collection` includes `object`.
1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 |
# File 'lib/test/unit/assertions.rb', line 1520 def assert_include(collection, object, =nil) _wrap_assertion do assert_respond_to(collection, :include?, "The collection must respond to :include?.") = (, "<?> was expected to include\n<?>.", collection, object) assert_block() do collection.include?(object) end end end |
#assert_instance_of(klass, object, message = nil) ⇒ Object
Passes if ‘object`.instance_of?(`klass`). When `klass` is an array of classes, it passes if any class satisfies +object.instance_of?(class).
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 |
# File 'lib/test/unit/assertions.rb', line 325 def assert_instance_of(klass, object, =nil) _wrap_assertion do if klass.is_a?(Array) klasses = klass else klasses = [klass] end assert_block("The first parameter to assert_instance_of should be " + "a Class or an Array of Class.") do klasses.all? {|k| k.is_a?(Class)} end = AssertionMessage.maybe_container(klass) do |value| "<#{value}>" end = (, <<EOT, object, , object.class) <?> was expected to be instance_of\\? ? but was <?>. EOT assert_block() do klasses.any? {|k| object.instance_of?(k)} end end end |
#assert_kind_of(klass, object, message = nil) ⇒ Object
Passes if ‘object`.kind_of?(`klass`). When `klass` is an array of classes or modules, it passes if any class or module satisfies +object.kind_of?(class_or_module).
412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 |
# File 'lib/test/unit/assertions.rb', line 412 def assert_kind_of(klass, object, =nil) _wrap_assertion do if klass.is_a?(Array) klasses = klass else klasses = [klass] end assert_block("The first parameter to assert_kind_of should be " + "a kind_of Module or an Array of a kind_of Module.") do klasses.all? {|k| k.kind_of?(Module)} end = AssertionMessage.maybe_container(klass) do |value| "<#{value}>" end = (, "<?> was expected to be kind_of\\?\n" + "? but was\n" + "<?>.", object, , object.class) assert_block() do klasses.any? {|k| object.kind_of?(k)} end end end |
#assert_match(pattern, string, message = nil) ⇒ Object
Passes if ‘pattern` =~ `string`.
535 536 537 538 539 540 541 542 543 544 545 546 547 548 |
# File 'lib/test/unit/assertions.rb', line 535 def assert_match(pattern, string, =nil) _wrap_assertion do pattern = case(pattern) when String Regexp.new(Regexp.escape(pattern)) else pattern end = (, "<?> was expected to be =~\n<?>.", pattern, string) assert_block() { pattern =~ string } end end |
#assert_nil(object, message = nil) ⇒ Object
Passes if ‘object` is nil.
396 397 398 399 400 401 |
# File 'lib/test/unit/assertions.rb', line 396 def assert_nil(object, =nil) = (, <<EOT, object) <?> was expected to be nil. EOT assert_block() { object.nil? } end |
#assert_no_match(regexp, string, message = "") ⇒ Object
Deprecated. Use #assert_not_match instead.
Passes if ‘regexp` !~ `string`
739 740 741 742 743 744 745 746 |
# File 'lib/test/unit/assertions.rb', line 739 def assert_no_match(regexp, string, ="") _wrap_assertion do assert_instance_of(Regexp, regexp, "The first argument to assert_no_match " + "should be a Regexp.") assert_not_match(regexp, string, ) end end |
#assert_not_const_defined(object, constant_name, message = nil) ⇒ Object
Passes if !‘object`.const_defined?(`constant_name`)
1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 |
# File 'lib/test/unit/assertions.rb', line 1368 def assert_not_const_defined(object, constant_name, =nil) _wrap_assertion do = (, "!<?>.const_defined\\?(<?>) expected.", object, constant_name) assert_block() do !object.const_defined?(constant_name) end end end |
#assert_not_empty(object, message = nil) ⇒ Object Also known as: refute_empty
Passes if ‘object` is not empty.
1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 |
# File 'lib/test/unit/assertions.rb', line 1604 def assert_not_empty(object, =nil) _wrap_assertion do assert_respond_to(object, :empty?, "The object must respond to :empty?.") = (, "<?> was expected to not be empty.", object) assert_block() do not object.empty? end end end |
#assert_not_equal(expected, actual, message = nil) ⇒ Object Also known as: refute_equal
Passes if ‘expected` != `actual`
679 680 681 682 683 684 |
# File 'lib/test/unit/assertions.rb', line 679 def assert_not_equal(expected, actual, =nil) = (, "<?> was expected to be != to\n<?>.", expected, actual) assert_block() { expected != actual } end |
#assert_not_in_delta(expected_float, actual_float, delta = 0.001, message = "") ⇒ Object Also known as: refute_in_delta
Passes if ‘expected_float` and `actual_float` are not equal within `delta` tolerance.
890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 |
# File 'lib/test/unit/assertions.rb', line 890 def assert_not_in_delta(expected_float, actual_float, delta=0.001, ="") _wrap_assertion do _assert_in_delta_validate_arguments(expected_float, actual_float, delta) = (expected_float, actual_float, delta, , :negative_assertion => true) assert_block() do (expected_float.to_f - actual_float.to_f).abs > delta.to_f end end end |
#assert_not_in_epsilon(expected_float, actual_float, epsilon = 0.001, message = "") ⇒ Object Also known as: refute_in_epsilon
Passes if ‘expected_float` and `actual_float` are not equal within `epsilon` relative error of `expected_float`.
1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 |
# File 'lib/test/unit/assertions.rb', line 1021 def assert_not_in_epsilon(expected_float, actual_float, epsilon=0.001, ="") _wrap_assertion do _assert_in_epsilon_validate_arguments(expected_float, actual_float, epsilon) = (expected_float, actual_float, epsilon, , :negative_assertion => true) assert_block() do normalized_expected_float = expected_float.to_f delta = normalized_expected_float * epsilon.to_f (normalized_expected_float - actual_float.to_f).abs > delta end end end |
#assert_not_include(collection, object, message = nil) ⇒ Object Also known as: assert_not_includes, refute_includes
Passes if ‘collection` doesn’t include ‘object`.
1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 |
# File 'lib/test/unit/assertions.rb', line 1547 def assert_not_include(collection, object, =nil) _wrap_assertion do assert_respond_to(collection, :include?, "The collection must respond to :include?.") = (, "<?> was expected to not include\n<?>.", collection, object) assert_block() do not collection.include?(object) end end end |
#assert_not_instance_of(klass, object, message = nil) ⇒ Object Also known as: refute_instance_of
Passes if ‘object`.instance_of?(`klass`) does not hold. When `klass` is an array of classes, it passes if no class satisfies +object.instance_of?(class).
361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 |
# File 'lib/test/unit/assertions.rb', line 361 def assert_not_instance_of(klass, object, =nil) _wrap_assertion do if klass.is_a?(Array) klasses = klass else klasses = [klass] end assert_block("The first parameter to assert_not_instance_of should be " + "a Class or an Array of Class.") do klasses.all? {|k| k.is_a?(Class)} end = AssertionMessage.maybe_container(klass) do |value| "<#{value}>" end = (, "<?> was expected to not be instance_of\\?\n" + "? but was.", object, ) assert_block() do klasses.none? {|k| object.instance_of?(k)} end end end |
#assert_not_kind_of(klass, object, message = nil) ⇒ Object Also known as: refute_kind_of
Passes if ‘object`.kind_of?(`klass`) does not hold. When `klass` is an array of classes or modules, it passes only if all classes (and modules) do not satisfy +object.kind_of?(class_or_module).
450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 |
# File 'lib/test/unit/assertions.rb', line 450 def assert_not_kind_of(klass, object, =nil) _wrap_assertion do if klass.is_a?(Array) klasses = klass else klasses = [klass] end assert_block("The first parameter to assert_not_kind_of should be " + "a kind_of Module or an Array of a kind_of Module.") do klasses.all? {|k| k.kind_of?(Module)} end = AssertionMessage.maybe_container(klass) do |value| "<#{value}>" end = (, "<?> was expected to not be kind_of\\?\n" + "? but was.", object, ) assert_block() do klasses.none? {|k| object.kind_of?(k)} end end end |
#assert_not_match(regexp, string, message = nil) ⇒ Object Also known as: refute_match
Passes if ‘regexp` !~ `string`
714 715 716 717 718 719 720 721 722 723 724 |
# File 'lib/test/unit/assertions.rb', line 714 def assert_not_match(regexp, string, =nil) _wrap_assertion do assert_instance_of(Regexp, regexp, "<REGEXP> in assert_not_match(<REGEXP>, ...) " + "should be a Regexp.") = (, "<?> was expected to not match\n<?>.", regexp, string) assert_block() { regexp !~ string } end end |
#assert_not_nil(object, message = nil) ⇒ Object Also known as: refute_nil
Passes if ! ‘object` .nil?
696 697 698 699 700 701 |
# File 'lib/test/unit/assertions.rb', line 696 def assert_not_nil(object, =nil) = (, "<?> was expected to not be nil.", object) assert_block(){!object.nil?} end |
#assert_not_operator(object1, operator, object2, message = nil) ⇒ Object Also known as: refute_operator
Compares the ‘object1` with `object2` using `operator`.
Passes if object1.__send__(operator, object2) is not true.
597 598 599 600 601 602 603 604 605 606 607 608 |
# File 'lib/test/unit/assertions.rb', line 597 def assert_not_operator(object1, operator, object2, =nil) _wrap_assertion do = (nil, "<?>\ngiven as the operator for #assert_not_operator must be a Symbol or #respond_to\\?(:to_str).", operator) assert_block(){operator.kind_of?(Symbol) || operator.respond_to?(:to_str)} = (, <<EOT, object1, AssertionMessage.literal(operator), object2) <?> was expected to not be ? <?>. EOT assert_block() { ! object1.__send__(operator, object2) } end end |
#assert_not_predicate(object, predicate, message = nil) ⇒ Object Also known as: refute_predicate
Passes if ‘object`.`predicate` is not true.
1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 |
# File 'lib/test/unit/assertions.rb', line 1407 def assert_not_predicate(object, predicate, =nil) _wrap_assertion do assert_respond_to(object, predicate, ) actual = object.__send__(predicate) = (, "<?>.? is false value expected but was\n" + "<?>", object, AssertionMessage.literal(predicate), actual) assert_block() do not actual end end end |
#assert_not_respond_to(object, method, message = nil) ⇒ Object Also known as: refute_respond_to
Passes if ‘object` does not .respond_to? `method`.
508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 |
# File 'lib/test/unit/assertions.rb', line 508 def assert_not_respond_to(object, method, =nil) _wrap_assertion do = (, "<?>.kind_of\\?(Symbol) or\n" + "<?>.respond_to\\?(:to_str) expected", method, method) assert_block() do method.kind_of?(Symbol) or method.respond_to?(:to_str) end = (, "!<?>.respond_to\\?(?) expected\n" + "(Class: <?>)", object, method, object.class) assert_block() {!object.respond_to?(method)} end end |
#assert_not_same(expected, actual, message = nil) ⇒ Object Also known as: refute_same
Passes if ! ‘actual` .equal? `expected`
659 660 661 662 663 664 665 666 667 |
# File 'lib/test/unit/assertions.rb', line 659 def assert_not_same(expected, actual, =nil) = (, <<EOT, expected, expected.__id__, actual, actual.__id__) <?> with id <?> was expected to not be equal\\? to <?> with id <?>. EOT assert_block() { !actual.equal?(expected) } end |
#assert_not_send(send_array, message = nil) ⇒ Object
Passes if the method send doesn’t return a true value.
‘send_array` is composed of:
-
A receiver
-
A method
-
Arguments to the method
1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 |
# File 'lib/test/unit/assertions.rb', line 1172 def assert_not_send(send_array, =nil) _wrap_assertion do assert_instance_of(Array, send_array, "assert_not_send requires an array " + "of send information") assert_operator(send_array.size, :>=, 2, "assert_not_send requires at least a receiver " + "and a message name") format = <<EOT <?> was expected to respond to <?(*?)> with not a true value but was <?>. EOT receiver, , *arguments = send_array result = nil = (, format, receiver, AssertionMessage.literal(.to_s), arguments, AssertionMessage.delayed_literal {result}) assert_block() do result = receiver.__send__(, *arguments) not result end end end |
#assert_nothing_raised(*args) ⇒ Object
Passes if block does not raise an exception.
622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 |
# File 'lib/test/unit/assertions.rb', line 622 def assert_nothing_raised(*args) _wrap_assertion do if args.last.is_a?(String) = args.pop else = "" end assert_exception_helper = AssertExceptionHelper.new(self, args) begin yield rescue Exception => e if ((args.empty? && !e.instance_of?(AssertionFailedError)) || assert_exception_helper.expected?(e)) = (, "Exception raised:\n?", e) assert_block() {false} else raise end end end end |
#assert_nothing_thrown(message = nil, &proc) ⇒ Object
Passes if block does not throw anything.
844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 |
# File 'lib/test/unit/assertions.rb', line 844 def assert_nothing_thrown(=nil, &proc) _wrap_assertion do assert(block_given?, "Should have passed a block to assert_nothing_thrown") begin proc.call rescue => error extractor = ThrowTagExtractor.new(error) tag = extractor.extract_tag raise if tag.nil? = (, "<?> was thrown when nothing was expected", tag) flunk() end assert(true, "Expected nothing to be thrown") end end |
#assert_operator(object1, operator, object2, message = nil) ⇒ Object
Compares the ‘object1` with `object2` using `operator`.
Passes if object1.__send__(operator, object2) is true.
574 575 576 577 578 579 580 581 582 583 584 585 |
# File 'lib/test/unit/assertions.rb', line 574 def assert_operator(object1, operator, object2, =nil) _wrap_assertion do = (nil, "<?>\ngiven as the operator for #assert_operator must be a Symbol or #respond_to\\?(:to_str).", operator) assert_block(){operator.kind_of?(Symbol) || operator.respond_to?(:to_str)} = (, <<EOT, object1, AssertionMessage.literal(operator), object2) <?> was expected to be ? <?>. EOT assert_block() { object1.__send__(operator, object2) } end end |
#assert_path_exist(path, message = nil) ⇒ Object
Passes if ‘path` exists.
1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 |
# File 'lib/test/unit/assertions.rb', line 1483 def assert_path_exist(path, =nil) _wrap_assertion do = (, "<?> was expected to exist", path) assert_block() do File.exist?(path) end end end |
#assert_path_not_exist(path, message = nil) ⇒ Object
Passes if ‘path` doesn’t exist.
1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 |
# File 'lib/test/unit/assertions.rb', line 1501 def assert_path_not_exist(path, =nil) _wrap_assertion do = (, "<?> was expected to not exist", path) assert_block() do not File.exist?(path) end end end |
#assert_predicate(object, predicate, message = nil) ⇒ Object
Passes if ‘object`.`predicate` is true.
1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 |
# File 'lib/test/unit/assertions.rb', line 1385 def assert_predicate(object, predicate, =nil) _wrap_assertion do assert_respond_to(object, predicate, ) actual = object.__send__(predicate) = (, "<?>.? is true value expected but was\n" + "<?>", object, AssertionMessage.literal(predicate), actual) assert_block() do actual end end end |
#assert_raise(*args, &block) ⇒ Object Also known as: assert_raises
Passes if the block raises one of the expected exceptions. When an expected exception is an Exception object, passes if expected_exception == actual_exception.
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 |
# File 'lib/test/unit/assertions.rb', line 268 def assert_raise(*args, &block) assert_expected_exception = Proc.new do |*_args| , assert_exception_helper, actual_exception = _args expected = assert_exception_helper.expected_exceptions diff = AssertionMessage.delayed_diff(expected, actual_exception) = (, "<?> exception expected but was\n<?>.?", expected, actual_exception, diff) begin assert_block() do expected == [] or assert_exception_helper.expected?(actual_exception) end rescue AssertionFailedError => failure _set_failed_information(failure, expected, actual_exception) raise failure # For JRuby. :< end end _assert_raise(assert_expected_exception, *args, &block) end |
#assert_raise_kind_of(*args, &block) ⇒ Object
Passes if the block raises one of the given exceptions or sub exceptions of the given exceptions.
300 301 302 303 304 305 306 307 308 309 310 311 312 313 |
# File 'lib/test/unit/assertions.rb', line 300 def assert_raise_kind_of(*args, &block) assert_expected_exception = Proc.new do |*_args| , assert_exception_helper, actual_exception = _args expected = assert_exception_helper.expected_exceptions = (, "<?> family exception expected " + "but was\n<?>.", expected, actual_exception) assert_block() do assert_exception_helper.expected?(actual_exception, :kind_of?) end end _assert_raise(assert_expected_exception, *args, &block) end |
#assert_raise_message(expected, message = nil) ⇒ Object
Passes if an exception is raised in block and its message is ‘expected`.
1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 |
# File 'lib/test/unit/assertions.rb', line 1313 def (expected, =nil) _wrap_assertion do = (, "<?> exception message was expected " + "but none was thrown.", expected) exception = nil assert_block() do begin yield false rescue Exception => exception true end end actual = exception. diff = AssertionMessage.delayed_diff(expected, actual) = (, "<?> exception message expected but was\n" + "<?>.?", expected, actual, diff) assert_block() do if expected.is_a?(Regexp) expected =~ actual else expected == actual end end end end |
#assert_respond_to(object, method, message = nil) ⇒ Object
Passes if ‘object` .respond_to? `method`
485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 |
# File 'lib/test/unit/assertions.rb', line 485 def assert_respond_to(object, method, =nil) _wrap_assertion do = (, "<?>.kind_of\\?(Symbol) or\n" + "<?>.respond_to\\?(:to_str) expected", method, method) assert_block() do method.kind_of?(Symbol) or method.respond_to?(:to_str) end = (, "<?>.respond_to\\?(?) expected\n" + "(Class: <?>)", object, method, object.class) assert_block() {object.respond_to?(method)} end end |
#assert_same(expected, actual, message = nil) ⇒ Object
Passes if ‘actual` .equal? `expected` (i.e. they are the same instance).
557 558 559 560 561 562 563 564 565 |
# File 'lib/test/unit/assertions.rb', line 557 def assert_same(expected, actual, =nil) = (, <<EOT, expected, expected.__id__, actual, actual.__id__) <?> with id <?> was expected to be equal\\? to <?> with id <?>. EOT assert_block() { actual.equal?(expected) } end |
#assert_send(send_array, message = nil) ⇒ Object
Passes if the method send returns a true value.
‘send_array` is composed of:
-
A receiver
-
A method
-
Arguments to the method
1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 |
# File 'lib/test/unit/assertions.rb', line 1132 def assert_send(send_array, =nil) _wrap_assertion do assert_instance_of(Array, send_array, "assert_send requires an array " + "of send information") assert_operator(send_array.size, :>=, 2, "assert_send requires at least a receiver " + "and a message name") format = <<EOT <?> was expected to respond to <?(*?)> with a true value but was <?>. EOT receiver, , *arguments = send_array result = nil = (, format, receiver, AssertionMessage.literal(.to_s), arguments, AssertionMessage.delayed_literal {result}) assert_block() do result = receiver.__send__(, *arguments) result end end end |
#assert_throw(expected_object, message = nil, &proc) ⇒ Object Also known as: assert_throws
Passes if the block throws ‘expected_object`
798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 |
# File 'lib/test/unit/assertions.rb', line 798 def assert_throw(expected_object, =nil, &proc) _wrap_assertion do begin catch([]) {} rescue TypeError assert_instance_of(Symbol, expected_object, "assert_throws expects the symbol that should be thrown for its first argument") end assert_block("Should have passed a block to assert_throw.") do block_given? end caught = true begin catch(expected_object) do proc.call caught = false end = (, "<?> should have been thrown.", expected_object) assert_block() {caught} rescue => error extractor = ThrowTagExtractor.new(error) tag = extractor.extract_tag raise if tag.nil? = (, "<?> was expected to be thrown but\n" + "<?> was thrown.", expected_object, tag) flunk() end end end |
#assert_true(actual, message = nil) ⇒ Object
Passes if ‘actual` is true.
1223 1224 1225 1226 1227 1228 1229 1230 1231 |
# File 'lib/test/unit/assertions.rb', line 1223 def assert_true(actual, =nil) _wrap_assertion do assert_block((, "<true> expected but was\n<?>", actual)) do actual == true end end end |
#build_message(user_message, template = nil, *arguments) ⇒ Object
Builds a failure message. ‘user_message` is added before the `template` and `arguments` replaces the ’?‘s positionally in the template.
1626 1627 1628 1629 |
# File 'lib/test/unit/assertions.rb', line 1626 def (, template=nil, *arguments) template &&= template.chomp return AssertionMessage.new(, template, arguments) end |
#flunk(message = "Flunked") ⇒ Object
Flunk always fails.
650 651 652 |
# File 'lib/test/unit/assertions.rb', line 650 def flunk(="Flunked") assert_block(()){false} end |
#refute(object, message = nil) ⇒ void
Just for minitest compatibility. :<
This method returns an undefined value.
Asserts that ‘object` is false or nil.
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
# File 'lib/test/unit/assertions.rb', line 190 def refute(object, =nil) _wrap_assertion do = nil case when nil, String, Proc when AssertionMessage = else = "assertion message must be String, Proc or " += "#{AssertionMessage}: " += "<#{.inspect}>(<#{.class}>)" raise ArgumentError, , filter_backtrace(caller) end assert_block("refute should not be called with a block.") do !block_given? end ||= (, "<?> is neither nil or false.", object) assert_block() do not object end end end |