0

这是关于著名的Rails 教程书的问题。我一直在学习第 3 章的教程。当我尝试生成清单 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

如您所见,它与清单 3.9中生成的代码完全不同

那么,知道发生了什么吗?我应该使用我的代码还是清单 3.9 中的代码来继续本教程?

我使用 Rails 4.0 和 Ruby 2.0,与教程中作者的版本相同。

感谢帮助。

4

1 回答 1

0

这只是您创建新的集成测试文件时系统生成的示例代码。这是无关紧要的。

您可以将其删除,并与教程中的代码一起移动。

于 2013-10-03T06:51:16.643 回答