Sha256: b5aa5b7955384be666e7420f28f6bbfa800b1375cbb03cb5e848be93d807bcd1

Contents?: true

Size: 1.16 KB

Versions: 4

Compression:

Stored size: 1.16 KB

Contents

# Copyright (c) 2008-2013 Michael Dvorkin and contributors.
#
# Fat Free CRM is freely distributable under the terms of MIT license.
# See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php
#------------------------------------------------------------------------------
require File.expand_path(File.dirname(__FILE__) + '/../../spec_helper')

describe "/campaigns/index" do
  include CampaignsHelper

  before do
    login_and_assign
  end

  it "should render [campaign] template with @campaigns collection if there are campaigns" do
    assign(:campaigns, [ FactoryGirl.create(:campaign, :id => 42) ].paginate)

    render :template => 'campaigns/index', :formats => [:js]
    
    rendered.should have_rjs("campaigns") do |rjs|
      with_tag("li[id=campaign_#{42}]")
    end
    rendered.should have_rjs("paginate")
  end

  it "should render [empty] template if @campaigns collection if there are no campaigns" do
    assign(:campaigns, [].paginate)

    render :template => 'campaigns/index', :formats => [:js]
    
    rendered.should have_rjs("campaigns") do |rjs|
      with_tag("div[id=empty]")
    end
    rendered.should have_rjs("paginate")
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fat_free_crm-0.12.3 spec/views/campaigns/index.rjs_spec.rb
fat_free_crm-0.12.2 spec/views/campaigns/index.rjs_spec.rb
fat_free_crm-0.12.1 spec/views/campaigns/index.rjs_spec.rb
fat_free_crm-0.12.0 spec/views/campaigns/index.rjs_spec.rb