Remove temporary test

This commit is contained in:
Gwyn Morfey 2008-04-18 16:46:57 +01:00
parent e4e2de1206
commit 87af3dbcc7

View File

@ -1,14 +0,0 @@
require File.dirname(__FILE__) + "/helper"
RAILS_ROOT = "." unless defined?(RAILS_ROOT)
class FooThing
end
class MochaTest < Test::Unit::TestCase
def test_mocha
@foo = FooThing.new
@foo.stubs(:bar).returns("bar")
assert_equal @foo.bar, "bar"
end
end