运行单系统测试

时间:2017-04-03 15:13:23

标签: ruby-on-rails testing ruby-on-rails-5 system-testing ruby-on-rails-5.1

要在Rails中运行单个测试,我们通常会这样做:

rails test TEST=test/system/invitation_test.rb

但这不适用于系统测试。这也不起作用:

rails test:system TEST=test/system/invitation_test.rb

使用上述两个命令,所有系统测试(文件)都会运行。

所以我的问题是,如何进行单一系统测试?

作为旁注,要在Rails中运行(所有)系统测试,you need to append :systemtest

rails test:system

1 个答案:

答案 0 :(得分:11)

如果你想运行你的系统测试(你需要使用:system附加测试),rails test似乎不起作用,如果你只想运行单个测试那么似乎有效:

rails test test/system/my_little_test.rb