DEBSOURCES
Skip Quicknav
sources / ruby-cutest / 1.2.3-1 / test / fixtures / fail_custom_assertion.rb
1234567
def assert_empty(string) assert(string.empty?, "not empty") end test "failed custom assertion" do assert_empty "foo" end