Sha256: c13e6be17303c375c6118480b2e74bf548e7f38247188ee2196f35db0c7b6408

Contents?: true

Size: 976 Bytes

Versions: 4

Compression:

Stored size: 976 Bytes

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 "/campaigns/destroy" do
  before do
    login_and_assign
    assign(:campaign, @campaign = FactoryGirl.create(:campaign, user: current_user))
    assign(:campaigns, [@campaign].paginate)
    assign(:campaign_status_total, Hash.new(1))
    render
  end

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

  it "should update Campaigns sidebar" do
    expect(rendered).to include("#sidebar")
    expect(rendered).to have_text("Recent Items")
    expect(rendered).to include(%/$('#filters').effect('shake'/)
  end

  it "should update pagination" do
    expect(rendered).to include("#paginate")
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
fat_free_crm-0.14.2 spec/views/campaigns/destroy.js.haml_spec.rb
fat_free_crm-0.14.1 spec/views/campaigns/destroy.js.haml_spec.rb
fat_free_crm-0.14.0 spec/views/campaigns/destroy.js.haml_spec.rb
reduced_fat_crm-0.14.0 spec/views/campaigns/destroy.js.haml_spec.rb