Sha256: 870f2dc732d18ad13233337b415a4720e900611b68e433fcb5166cb980b4dbc6

Contents?: true

Size: 1.49 KB

Versions: 7

Compression:

Stored size: 1.49 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 "/campaigns/show" do
  include CampaignsHelper

  before do
    login
    @campaign = build_stubbed(:campaign, id: 42,
                                         leads: [build_stubbed(:lead)],
                                         opportunities: [build_stubbed(:opportunity)])
    assign(:campaign, @campaign)
    assign(:users, [current_user])
    assign(:comment, Comment.new)
    assign(:timeline, [build_stubbed(:comment, commentable: @campaign)])
    allow(view).to receive(:params) { { id: 123 } }

    # controller#controller_name and controller#action_name are not set in view specs
    allow(view).to receive(:template_for_current_view).and_return(nil)
  end

  it "should render campaign landing page" do
    render
    expect(view).to render_template(partial: "comments/_new")
    expect(view).to render_template(partial: "shared/_timeline")
    expect(view).to render_template(partial: "shared/_tasks")
    expect(view).to render_template(partial: "leads/_leads")
    expect(view).to render_template(partial: "opportunities/_opportunities")

    expect(rendered).to have_tag("div[id=edit_campaign]")
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

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