Sha256: 151c472db386ad0c020641782777607a7564fa7459f9ad7d73429c8366f986b0

Contents?: true

Size: 1.04 KB

Versions: 4

Compression:

Stored size: 1.04 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 'spec_helper'

describe "/accounts/index" do
  include AccountsHelper

  before do
    login_and_assign
  end

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

    render :template => 'accounts/index', :formats => [:js]

    rendered.should include("$('#accounts').html")
    rendered.should include("$('#paginate').html")
  end

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

    render :template => 'accounts/index', :formats => [:js]

    rendered.should include("$('#accounts').html('<div id=\\'empty\\'")
    rendered.should include("$('#paginate').html")
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fat_free_crm-0.13.6 spec/views/accounts/index.js.haml_spec.rb
fat_free_crm-0.13.5 spec/views/accounts/index.js.haml_spec.rb
fat_free_crm-0.13.4 spec/views/accounts/index.js.haml_spec.rb
fat_free_crm-0.13.3 spec/views/accounts/index.js.haml_spec.rb