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

Version Path
fat_free_crm-0.13.6 spec/views/contacts/show.haml_spec.rb
fat_free_crm-0.13.5 spec/views/contacts/show.haml_spec.rb
fat_free_crm-0.13.4 spec/views/contacts/show.haml_spec.rb
fat_free_crm-0.13.3 spec/views/contacts/show.haml_spec.rb
fat_free_crm-0.13.2 spec/views/contacts/show.haml_spec.rb
fat_free_crm-0.12.3 spec/views/contacts/show.haml_spec.rb
fat_free_crm-0.12.2 spec/views/contacts/show.haml_spec.rb
fat_free_crm-0.13.1 spec/views/contacts/show.haml_spec.rb
fat_free_crm-0.12.1 spec/views/contacts/show.haml_spec.rb
fat_free_crm-0.13.0 spec/views/contacts/show.haml_spec.rb
fat_free_crm-0.12.0 spec/views/contacts/show.haml_spec.rb