Sha256: 6aca7d4db7394937e9803a7244f9ee6db3a5a01308d5fd7520e95af919b95145

Contents?: true

Size: 1.46 KB

Versions: 7

Compression:

Stored size: 1.46 KB

Contents

# frozen_string_literal: true

# 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.ransack
    login
  end

  it "should render account name" do
    assign(:accounts, [build_stubbed(:account, name: 'New Media Inc'), build_stubbed(: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, [build_stubbed(:account), build_stubbed(: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

7 entries across 7 versions & 1 rubygems

Version Path
fat_free_crm-0.20.1 spec/views/accounts/index.haml_spec.rb
fat_free_crm-0.20.0 spec/views/accounts/index.haml_spec.rb
fat_free_crm-0.19.2 spec/views/accounts/index.haml_spec.rb
fat_free_crm-0.19.0 spec/views/accounts/index.haml_spec.rb
fat_free_crm-0.18.2 spec/views/accounts/index.haml_spec.rb
fat_free_crm-0.18.1 spec/views/accounts/index.haml_spec.rb
fat_free_crm-0.18.0 spec/views/accounts/index.haml_spec.rb