我试图用 TDD 让我的头脑“变脏”,由于某种原因,当我bundle exec rake test
在命令行上运行时,什么也没有发生。
这是我的RakeFile
:
require 'rake/testtask'
Rake::TestTask.new do |test|
test.libs << 'test'
end
desc "Run Tests"
task :default => :test
这是我的测试文件:
require 'test/unit'
class TestMygem < Test::Unit::TestCase
def test_silly_example
assert_equal 2+2, 5
end
end