这是关于着名的Rails Tutorial书的问题。我正在关注tutorial直到第3章。当我尝试在Listing 3.9中生成测试代码时出现问题
我的系统生成的代码是:
require 'spec_helper'
describe "StaticPages" do
describe "GET /static_pages" do
it "works! (now write some real specs)" do
# Run the generator again with the --webrat flag if you want to use webrat methods/matchers
get static_pages_index_path
response.status.should be(200)
end
end
end
正如您所看到的,它与Listing 3.9
中生成的代码完全不同那么,知道发生了什么事吗?我应该使用代码清单3.9中的代码或代码来继续教程吗?
我使用的是Rails 4.0和Ruby 2.0,与本教程中作者的版本相同。
感谢您的帮助。
答案 0 :(得分:0)
这只是系统在您创建新的集成测试文件时生成的示例代码。这是无关紧要的。
您可以删除它,并随教程中的代码一起移动。