Rails添加了一个test
方法,使该方法可以编写:
class FooTest < ActiveSupport::TestCase
test "the truth" do
assert true
end
end
在只有Minitest的简单Ruby测试套件中,如何才能实现相同的表达能力?代替:
class FooTest
def test_the_truth
assert true
end
end
或“规格样式”,例如:
describe Foo
it "is true" do
assert true
end
end
我希望能够:
class FooTest
test "the truth" do
assert true
end
end
或者在“规范样式”中使用test
代替it
。