2

書籍のリストをテストしているときに、次のエラーが表示されます。

Failure/Error: visit books_path
     ActionView::Template::Error:
       undefined method `name' for nil:NilClass
     # ./app/views/books/_book.html.erb:5:in `_app_views_books__book_html_erb___3197212671375452820_30961180'
     # ./app/views/books/index.html.erb:8:in `_app_views_books_index_html_erb__3030997400964951224_38341240'
     # ./spec/requests/book_pages_spec.rb:13:in `block (3 levels) in <top (required)>'

私は成功せずに2日間デバッグしようとしてきましたが、現在SOに助けを求めています。

Book#index はすべての本を正しく表示することを指摘しなければなりません。バグはおそらく私のテストにあるだけです。book.author が nil を返すため、工場の女の子は関連付けを正しく作成していないと思います。

ありがとうございました!

book.rb

class Book < ActiveRecord::Base
  attr_accessible :title
  belongs_to :author    
  validates :author_id, presence: true
end

著者.rb

class Author < ActiveRecord::Base
  attr_accessible :name
  has_many :books, dependent: :destroy
end

factory.rb

FactoryGirl.define do
  factory :author do
    sequence(:name) { |n| "Author #{n}" }
  end

  factory :book do
    sequence(:title) { |n| "Lorem ipsum #{n}" }
    author
  end
end

_book.html.erb

<li>
  <span class="title"><%= link_to book.title, book_path(book) %></span>
    <span class="author"><%= link_to book.author.name, author_path(book.author) %></span>
</li>

book_pages_spec.rb

require 'spec_helper'
describe "Book pages" do
  subject { page }
  describe "index" do
    let(:author) { FactoryGirl.create(:author) }
    before(:each) do
      visit books_path
    end
    before(:all) { 32.times {FactoryGirl.create(:book, author: author)} }
    after(:all) { Author.delete_all }
    it { should have_title_and_heading("All books") }
  end
end
4

1 に答える 1