Sha256: 7fde647ba7de41e6a77632b2a2a174936652547eafed80491ab3a25e55157654
Contents?: true
Size: 1.1 KB
Versions: 11
Compression:
Stored size: 1.1 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 "/home/index" do include HomeHelper before do login_and_assign end it "should render list of activities if it's not empty" do assign(:activities, [FactoryGirl.build_stubbed(:version, event: "update", item: FactoryGirl.build_stubbed(:account))]) assign(:my_tasks, []) assign(:my_opportunities, []) assign(:my_accounts, []) render expect(view).to render_template(partial: "_activity") end it "should render a message if there're no activities" do assign(:activities, []) assign(:my_tasks, []) assign(:my_opportunities, []) assign(:my_accounts, []) render expect(view).not_to render_template(partial: "_activity") expect(rendered).to include("No activity records found.") end end
Version data entries
11 entries across 11 versions & 2 rubygems