0

解決策をたくさん探しましたが、見つかりませんでした。Michael Hartl のチュートリアルを見た後、Rails アプリケーションを作成しようとしています。データを手動で入力して送信すると、何も起こらず、Mailers テーブルに何も記録されず、次のエラーに直面しています。

Failures:

  1) Mailer pages mail us with valid information should send a mail
     Failure/Error: expect { click_button submit}.to change(Mailer, :count).by(1)
       count should have been changed by 1, but was changed by 0
     # ./spec/requests/mailer_pages_spec.rb:31:in `block (4 levels) in <top (required)>'

Finished in 0.89134 seconds
2 examples, 1 failure

Failed examples:

rspec ./spec/requests/mailer_pages_spec.rb:30 # Mailer pages mail us with valid information should send a mail

Randomized with seed 17352

モデル ファイルは次のとおりです。

class Mailer < ActiveRecord::Base
  attr_accessible :company_name, :contact_name, :address, :telephone, :email, :description
  before_save { |mailer| mailer.email = mailer.email.downcase }
  validates :company_name, length: { maximum: 50 }
  validates :contact_name, presence: true, length: { maximum: 40 }
  VALID_EMAIL_REGEX = /\A[\w+\-.]+@[a-z\d\-.]+\.[a-z]+\z/i
  validates :email, presence: true, format: { with: VALID_EMAIL_REGEX }
end

コントローラ:

class MailersController < ApplicationController

  def new
    @mailer = Mailer.new
  end

  def create
    @mailer = Mailer.new(params[:mailer])
    if @mailer.save
      redirect_to root_path
    else
      render 'new'
    end
  end
end

統合テスト:

require 'spec_helper'

describe "Mailer pages" do

 subject { page }


 describe "mail us" do

     let(:submit) { "Send my Mail"}
     before { visit mailers_path }


     describe "with invalid information" do
       it "should not send a mail" do
         expect { click_button submit }.not_to change(Mailer, :count)
         end
     end

     describe "with valid information" do
       before do
         fill_in "Company name", with: "Mailer Company"
         fill_in "Contact name", with: "Mailer Contact"
         fill_in "Address",      with: "Mailer Address"
         fill_in "Telephone",    with: "123-456-789"
         fill_in "Email",        with: "mailer@example.com"
         fill_in "Description",  with: "something to say"
       end

       it "should send a mail" do
         expect { click_button submit}.to change(Mailer, :count).by(1)
       end  
     end
   end
 end

そしてフォーム:

<% provide(:title , 'Mail Us') %>
<h1>Mail Us</h1>
<div class="row">
    <div class="span6 offset3 hero-unit">

<%= form_for(@mailer) do |f| %>
    <%= f.label :company_name %>
    <%= f.text_field :company_name %>

    <%= f.label :contact_name %>
    <%= f.text_field :contact_name %>

    <%= f.label :address %>
    <%= f.text_field :address %>

    <%= f.label :telephone %>
    <%= f.text_field :telephone %>

    <%= f.label :email %>
    <%= f.text_field :email %>

    <%= f.label :description %>
    <%= f.text_field :description %>

    <%= f.submit "Send my Mail", class: "btn btn-large btn-primary"%>
<% end %>
</div>
</div>

Rails.env.development の場合 <%= debug(params) の後? %> がアプリケーション レイアウトに追加されました。アクションが作成ではなく新規であることがわかりました。それが問題の原因ですか?? 助けを待っている

4

2 に答える 2