Sha256: cb82c0542eb3148431cfb6d75fa7fdde16d507fc9e10acf42e452f62777f81b8

Contents?: true

Size: 1.15 KB

Versions: 8

Compression:

Stored size: 1.15 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 "/contacts/index" do
  include ContactsHelper

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

  it "should render a list of contacts if it's not empty" do
    assign(:contacts, [FactoryGirl.build_stubbed(:contact)].paginate)

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

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

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

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
fat_free_crm-0.15.2 spec/views/contacts/index.haml_spec.rb
fat_free_crm-0.16.4 spec/views/contacts/index.haml_spec.rb
fat_free_crm-0.15.1 spec/views/contacts/index.haml_spec.rb
fat_free_crm-0.16.3 spec/views/contacts/index.haml_spec.rb
fat_free_crm-0.16.2 spec/views/contacts/index.haml_spec.rb
fat_free_crm-0.16.1 spec/views/contacts/index.haml_spec.rb
fat_free_crm-0.16.0 spec/views/contacts/index.haml_spec.rb
fat_free_crm-0.15.0 spec/views/contacts/index.haml_spec.rb