Sha256: f3d583dca16b375b09526bdd5f30b3058d57a5ad68d56fec62e7438912520a3e
Contents?: true
Size: 326 Bytes
Versions: 41
Compression:
Stored size: 326 Bytes
Contents
module Test::Unit::Assertions def assert_false(boolean, message=nil) _wrap_assertion do assert_block("assert should not be called with a block.") { !block_given? } assert_block(build_message(message, "<?> is not false.", boolean)) { !boolean } end end end # module test
Version data entries
41 entries across 41 versions & 3 rubygems
Version | Path |
---|---|
watir-1.5.4 | watir/testUnitAddons.rb |