当前位置 : 主页 > 编程语言 > ruby >

ruby-on-rails – 使用RSpec测试导轨金属/机架?

来源:互联网 收集:自由互联 发布时间:2021-06-23
假设我有一个名为Preview的Metal类.如何使用RSpec进行测试? 当我尝试: require 'spec_helper'describe Preview do it "should return the posted content" do post "/preview", :content = "*title*" response.body.should == "*ti
假设我有一个名为Preview的Metal类.如何使用RSpec进行测试?

当我尝试:

require 'spec_helper'

describe Preview do

  it "should return the posted content" do
    post "/preview", :content => "*title*"
    response.body.should == "*title*"
  end

end

我明白了:

undefined method `post' for #<ActiveSupport::TestCase::Subclass_1:0x1058b3098>

似乎RSpec没有加载:post方法,如果测试没有显式为Controller.我已经尝试过指定:type => :控制器无济于事.

rspec具有包含rails集成测试(通过机架)的集成规范.只需将该规范放在./spec/integration/preview_spec.rb中即可.
网友评论