Sha256: 73f15de5d6fd36115ac4f63e48203cd62f06d9fcc2c6c7e16be54c30bb9cba34

Contents?: true

Size: 1.46 KB

Versions: 4

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
    expect(rendered).to 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
    expect(view).to render_template(partial: "_account")
    expect(view).to render_template(partial: "shared/_paginate_with_per_page")
  end

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

    render
    expect(view).not_to render_template(partial: "_account")
    expect(view).to render_template(partial: "shared/_empty")
    expect(view).to render_template(partial: "shared/_paginate_with_per_page")
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
fat_free_crm-0.14.2 spec/views/accounts/index.haml_spec.rb
fat_free_crm-0.14.1 spec/views/accounts/index.haml_spec.rb
fat_free_crm-0.14.0 spec/views/accounts/index.haml_spec.rb
reduced_fat_crm-0.14.0 spec/views/accounts/index.haml_spec.rb