要在Rails中运行单个测试,我们通常会这样做:
rails test TEST=test/system/invitation_test.rb
但这不适用于系统测试。这也不起作用:
rails test:system TEST=test/system/invitation_test.rb
使用上述两个命令,所有系统测试(文件)都会运行。
所以我的问题是,如何进行单一系统测试?
作为旁注,要在Rails中运行(所有)系统测试,you need to append :system
到test
。
rails test:system
答案 0 :(得分:11)
如果你想运行你的系统测试(你需要使用:system附加测试),rails test
似乎不起作用,如果你只想运行单个测试那么似乎有效:
rails test test/system/my_little_test.rb