我正在编写测试,其中电子邮件发布到路线,然后按照正常情况进行处理。我从这段代码中得到了上述错误:
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。任何帮助/线索都会非常感激,因为到目前为止我找不到任何帮助我