我想使用虚拟应用程序测试Rails 4引擎,但我不知道该怎么做。
我的引擎只有一个名为Event
的模型。首先,我将event_test.rb
:
test "the truth" do
assert true
end
现在我尝试从虚拟应用程序的文件夹启动测试,但我不知道我必须使用哪个命令。我试过rake test
(没有任何反应)和rake test test/models/<engine-name>/event_test.rb
(错误:rake aborted!不知道如何构建任务......)。
如何启动引擎测试?
答案 0 :(得分:1)
Dummy
应用程序仅为您engine
安装了点。您不需要从dummy
目录运行测试。
来自engine
的{{1}} {/ 1}}中的(控制器,视图等)应该可以dummy
中dummy
engine
中的(控制器,视图等)提供。