ruby Test::Unit 命令行选项?
当在 Ruby 的 unit::test 框架中运行测试时,是否有一种非常简单的方法可以从命令行指定只运行一个测试(即指定测试类和测试成员变量)? 如果没有,是否有其他框架具有此功能?
When running tests in Ruby's unit::test framework, is there a really easy way to specify, from the command-line, that only one test should be run (that is, specify the test class and test member variable)? If not, is there another framework that has this feature?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这将调用该文件中的
test_should_do_something_really_spiffy
方法定义的测试。编辑:这是大多数 ruby 测试所使用的
Test::Unit
框架。 我假设你的意思是一样的。That will call the test defined by the method
test_should_do_something_really_spiffy
in that file.EDIT: That's for the
Test::Unit
framework that most ruby tests are written with. I am assuming you meant the same.如果您有完整的
Test::Unit
框架,您可以获取命令行选项。 我认为如果你只有最小版本,它就不起作用。
If you have the full
Test::Unit
framework, you can doto get the command line options. I don't think it works if you just have the minitest version though.