Sha256: ad4686fba376ac9e155289d9b34fb34ab36d66580342cebe0131773318ab8545

Contents?: true

Size: 1.55 KB

Versions: 11

Compression:

Stored size: 1.55 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 "/leads/destroy" do
  before do
    login_and_assign
    assign(:lead, @lead = FactoryGirl.build_stubbed(:lead))
    assign(:lead_status_total, Hash.new(1))
  end

  it "should blind up destroyed lead partial" do
    render
    expect(rendered).to include("slideUp")
  end

  it "should update leads sidebar when called from leads index" do
    assign(:leads, [@lead].paginate)
    controller.request.env["HTTP_REFERER"] = "http://localhost/leads"
    render

    expect(rendered).to include("#sidebar")
    expect(rendered).to have_text("Recent Items")
    expect(rendered).to include("$('#filters').effect('shake'")
  end

  it "should update pagination when called from leads index" do
    assign(:leads, [@lead].paginate)
    controller.request.env["HTTP_REFERER"] = "http://localhost/leads"
    render

    expect(rendered).to include("#paginate")
  end

  it "should update related asset sidebar when called from related asset" do
    assign(:campaign, campaign = FactoryGirl.build_stubbed(:campaign))
    controller.request.env["HTTP_REFERER"] = "http://localhost/campaigns/#{campaign.id}"
    render

    expect(rendered).to include("#sidebar")
    expect(rendered).to have_text("Campaign Summary")
    expect(rendered).to have_text("Recent Items")
  end
end

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
fat_free_crm-0.15.2 spec/views/leads/destroy.js.haml_spec.rb
fat_free_crm-0.16.4 spec/views/leads/destroy.js.haml_spec.rb
fat_free_crm-0.15.1 spec/views/leads/destroy.js.haml_spec.rb
fat_free_crm-0.16.3 spec/views/leads/destroy.js.haml_spec.rb
fat_free_crm-0.16.2 spec/views/leads/destroy.js.haml_spec.rb
fat_free_crm-0.16.1 spec/views/leads/destroy.js.haml_spec.rb
fat_free_crm-0.16.0 spec/views/leads/destroy.js.haml_spec.rb
fat_free_crm-0.15.0 spec/views/leads/destroy.js.haml_spec.rb
fat_free_crm-0.15.0.beta.2 spec/views/leads/destroy.js.haml_spec.rb
fat_free_crm-0.15.0.beta spec/views/leads/destroy.js.haml_spec.rb
reduced_fat_crm-0.15.0.beta spec/views/leads/destroy.js.haml_spec.rb