23

ビューに (Kaminari gem を介して) ページ付けが追加されたため、合格していたビュー仕様が壊れています。私はまだRSpecの構文に頭を悩ませようとしています...ページがブラウザで正常に動作するので、これを渡すための助けを探しています。多くの人がビュースペックが脆弱であると眉をひそめていることは承知していますが(おそらくこのような理由で)、それでもこれを通過させたいと思います

@posts 配列にいくつかのスタブ化された投稿を割り当てています。しかし、配列は に応答しませんcurrent_page。では、RSpec でこれをどのように処理すればよいでしょうか?

Failures:

  1) posts/index.html.haml renders a list of posts
     Failure/Error: render
     ActionView::Template::Error:
       undefined method `current_page' for #<Array:0x000001028ab4e0>
     # ./app/views/posts/index.html.haml:31:in `_app_views_posts_index_html_haml__291454070937541541_2193463480'
     # ./spec/views/posts/index.html.haml_spec.rb:39:in `block (2 levels) in <top (required)>'

spec/views/posts/index.html.haml_spec.rb:

require 'spec_helper'

describe "posts/index.html.haml" do
  before(:each) do
    ...
    assign(:posts, [
      Factory.stub(:post),
      Factory.stub(:post)
    ])    
    view.should_receive(:date_as_string).twice.and_return("June 17, 2011")
    ...
  end

  it "renders a list of posts" do
    render
    rendered.should have_content("June 17, 2011")
    ...
  end
end
4

2 に答える 2

46

以下のようなこともできます。

assign(:posts, Kaminari.paginate_array([
        Factory.stub(:post),
        Factory.stub(:post)
      ]).page(1))
于 2012-01-16T19:08:34.273 に答える
17

動作をスタブする必要があります。これを試してください:

before(:each) do
  ...
  posts = [Factory.stub(:post), Factory.stub(:post)]
  posts.stub!(:current_page).and_return(1)
  posts.stub!(:total_pages).and_return(2)
  assign(:posts, posts)    
  view.should_receive(:date_as_string).twice.and_return("June 17, 2011")
  ...
end
于 2011-08-16T15:10:09.097 に答える