Skip to content

Instantly share code, notes, and snippets.

@lifo
Created November 8, 2008 12:59
Show Gist options
  • Save lifo/23066 to your computer and use it in GitHub Desktop.
Save lifo/23066 to your computer and use it in GitHub Desktop.
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