Created
December 14, 2009 13:59
-
-
Save madadam/256065 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rubygems' | |
require 'test/unit' | |
require 'turn' | |
class FooTest < Test::Unit::TestCase | |
def test_foo | |
assert_foo false | |
end | |
private | |
def assert_foo(value, message = 'foo failed') | |
assert_equal true, value, message | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment