hydra/test/fixtures/conflicting.rb
Sean Kirby db33cc8e56 Fixed runner crash if a test file cannot properly be required. This can
happen for instance when two test classes have the same name but different
super classes.
2010-10-29 00:23:57 -04:00

11 lines
248 B
Ruby

require File.join(File.dirname(__FILE__), '..', 'test_helper')
# this test is around to make sure that we handle all the errors
# that can occur when 'require'ing a test file.
class SyncTest < Object
def test_it_again
assert true
end
end