仅使用Minitest的纯Ruby中的Rails样式测试方法?

时间:2019-08-17 01:18:41

标签: ruby testing minitest

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

0 个答案:

没有答案