Sha256: 8b3c45bad2bbadf04417f4a4588c8faae832c179c314724b1333402ad774d91e

Contents?: true

Size: 1.08 KB

Versions: 4

Compression:

Stored size: 1.08 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 [activity] template with @activities collection" do
    assign(:activities, [ FactoryGirl.create(:version, :id => 42, :event => "update", :item => FactoryGirl.create(:account), :whodunnit => current_user.id.to_s) ])

    render :template => 'home/index', :formats => [:js]

    rendered.should have_rjs("activities") do |rjs|
      with_tag("li[id=version_42]")
    end
  end

  it "should render a message if there're no activities" do
    assign(:activities, [])

    render :template => 'home/index', :formats => [:js]

    rendered.should have_rjs("activities")
    rendered.should include("No activity records found.")
  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fat_free_crm-0.12.3 spec/views/home/index.rjs_spec.rb
fat_free_crm-0.12.2 spec/views/home/index.rjs_spec.rb
fat_free_crm-0.12.1 spec/views/home/index.rjs_spec.rb
fat_free_crm-0.12.0 spec/views/home/index.rjs_spec.rb