未定义的方法`post'用于处理电子邮件时的RSpec

时间:2015-07-22 21:21:13

标签: ruby-on-rails selenium post rspec capybara

我正在编写测试,其中电子邮件发布到路线,然后按照正常情况进行处理。我从这段代码中得到了上述错误:

require 'spec_helper'
feature 'send email', %q{
} , :js => true do

    before(:each) do 
        sign_in
        @email = build(:email, :with_attachment)
    end

    scenario 'Email works' do
        post "/email_processor", @email
        sleep
    end
end

我正在使用Capybara,Selenium和Rspec。任何帮助/线索都会非常感激,因为到目前为止我找不到任何帮助我

0 个答案:

没有答案