Sha256: 2e43e879ab817cb268e70088330de1e95a96caef0e8923cb31b0daec67a09331

Contents?: true

Size: 1.46 KB

Versions: 11

Compression:

Stored size: 1.46 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 "/accounts/index" do
  include AccountsHelper

  before do
    view.lookup_context.prefixes << 'entities'
    assign :per_page, Account.per_page
    assign :sort_by,  Account.sort_by
    assign :ransack_search, Account.search
    login_and_assign
  end

  it "should render account name" do
    assign(:accounts, [ FactoryGirl.create(:account, :name => 'New Media Inc'), FactoryGirl.create(:account) ].paginate)
    render
    rendered.should have_tag('a', :text => "New Media Inc")
  end

  it "should render list of accounts if list of accounts is not empty" do
    assign(:accounts, [ FactoryGirl.create(:account), FactoryGirl.create(:account) ].paginate)

    render
    view.should render_template(:partial => "_account")
    view.should render_template(:partial => "shared/_paginate_with_per_page")
  end

  it "should render a message if there're no accounts" do
    assign(:accounts, [].paginate)

    render
    view.should_not render_template(:partial => "_account")
    view.should render_template(:partial => "shared/_empty")
    view.should render_template(:partial => "shared/_paginate_with_per_page")
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
fat_free_crm-0.13.6 spec/views/accounts/index.haml_spec.rb
fat_free_crm-0.13.5 spec/views/accounts/index.haml_spec.rb
fat_free_crm-0.13.4 spec/views/accounts/index.haml_spec.rb
fat_free_crm-0.13.3 spec/views/accounts/index.haml_spec.rb
fat_free_crm-0.13.2 spec/views/accounts/index.haml_spec.rb
fat_free_crm-0.12.3 spec/views/accounts/index.haml_spec.rb
fat_free_crm-0.12.2 spec/views/accounts/index.haml_spec.rb
fat_free_crm-0.13.1 spec/views/accounts/index.haml_spec.rb
fat_free_crm-0.12.1 spec/views/accounts/index.haml_spec.rb
fat_free_crm-0.13.0 spec/views/accounts/index.haml_spec.rb
fat_free_crm-0.12.0 spec/views/accounts/index.haml_spec.rb