Sha256: 412d49daea09c89dc8d73b5a369ada2d92b6b58c8157082661149aa0f239da95
Contents?: true
Size: 1.1 KB
Versions: 7
Compression:
Stored size: 1.1 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/show" do include LeadsHelper before do login assign(:lead, @lead = build_stubbed(:lead, id: 42)) assign(:users, [current_user]) assign(:comment, Comment.new) assign(:timeline, [build_stubbed(:comment, commentable: @lead)]) # 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 lead 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(rendered).to have_tag("div[id=edit_lead]") end end
Version data entries
7 entries across 7 versions & 1 rubygems