Sha256: b2dd3d19a5513754cb7e2054a9216e56817b2462f0f7b376e2d7fbbf907637fe

Contents?: true

Size: 1.23 KB

Versions: 7

Compression:

Stored size: 1.23 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 "/leads/index" do
  include LeadsHelper

  before do
    view.lookup_context.prefixes << 'entities'
    assign :per_page, Lead.per_page
    assign :sort_by,  Lead.sort_by
    assign :ransack_search, Lead.ransack
    login
  end

  it "should render list of accounts if list of leads is not empty" do
    assign(:leads, [build_stubbed(:lead)].paginate(page: 1, per_page: 20))

    render
    expect(view).to render_template(partial: "_lead")
    expect(view).to render_template(partial: "shared/_paginate_with_per_page")
  end

  it "should render a message if there're no leads" do
    assign(:leads, [].paginate(page: 1, per_page: 20))

    render
    expect(view).not_to render_template(partial: "_leads")
    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/leads/index.haml_spec.rb
fat_free_crm-0.20.0 spec/views/leads/index.haml_spec.rb
fat_free_crm-0.19.2 spec/views/leads/index.haml_spec.rb
fat_free_crm-0.19.0 spec/views/leads/index.haml_spec.rb
fat_free_crm-0.18.2 spec/views/leads/index.haml_spec.rb
fat_free_crm-0.18.1 spec/views/leads/index.haml_spec.rb
fat_free_crm-0.18.0 spec/views/leads/index.haml_spec.rb