Sha256: a62a7301c53096063750fe6d8d9c222418423969f090f72c6862fe961a6d5617
Contents?: true
Size: 1.11 KB
Versions: 11
Compression:
Stored size: 1.11 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 File.expand_path(File.dirname(__FILE__) + '/../../spec_helper') describe "/contacts/show" do include ContactsHelper before do login_and_assign @contact = FactoryGirl.create(:contact, :id => 42, :opportunities => [ FactoryGirl.create(:opportunity) ]) assign(:contact, @contact) assign(:users, [ current_user ]) assign(:comment, Comment.new) assign(:timeline, [ FactoryGirl.create(:comment, :commentable => @contact) ]) end it "should render contact landing page" do render view.should render_template(:partial => "comments/_new") view.should render_template(:partial => "shared/_timeline") view.should render_template(:partial => "shared/_tasks") view.should render_template(:partial => "opportunities/_opportunity") rendered.should have_tag("div[id=edit_contact]") end end
Version data entries
11 entries across 11 versions & 1 rubygems