Created
November 8, 2008 12:59
-
-
Save lifo/23066 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 File.dirname(__FILE__) + '/test_helper.rb' | |
module SuperAwesomeTests | |
def test_truth_from_module | |
assert true | |
end | |
end | |
class TestModular < Test::Unit::TestCase | |
include SuperAwesomeTests | |
def test_all_tests_get_run | |
assert_equal 2, self.class.total_tests_ran_in_file | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment