Sha256: 2f1cba5c71f52c9fadf786e9df210e4376b178eaf406f8fc534339d6bb0d3e04

Contents?: true

Size: 894 Bytes

Versions: 14

Compression:

Stored size: 894 Bytes

Contents

require File.dirname(__FILE__) + '/../test_helper'
require 'admin/dashboard_controller'

class Admin::DashboardController; def rescue_action(e) raise e end; end

class DashboardControllerTest < ActionController::TestCase

  fixtures :users, :pages

  def setup
    @controller = Admin::DashboardController.new
    login_as(:quentin)
  end

  def test_should_get_index
    get :index
    assert_response :success

    assert_not_nil assigns(:recent_activity)
  end

  def test_recent_activity_should_report_activity
    sleep 1
    pages(:home_page).update_attribute(:updated_at, Time.now)

    get :index

    # now the home page is updated is it at the top?
    assert_equal pages(:home_page).id, assigns(:recent_activity).first.id
  end

  def test_should_require_login_and_redirect
    logout

    get :index
    assert_response :redirect
    assert_nil assigns(:recent_activity)
  end

end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
refinerycms-0.9.6.34 test/functional/dashboard_controller_test.rb
refinerycms-0.9.6.33 test/functional/dashboard_controller_test.rb
refinerycms-0.9.6.32 test/functional/dashboard_controller_test.rb
refinerycms-0.9.6.31 test/functional/dashboard_controller_test.rb
refinerycms-0.9.6.30 test/functional/dashboard_controller_test.rb
refinerycms-0.9.6.29 test/functional/dashboard_controller_test.rb
refinerycms-0.9.6.28 test/functional/dashboard_controller_test.rb
refinerycms-0.9.6.27 test/functional/dashboard_controller_test.rb
refinerycms-0.9.6.26 test/functional/dashboard_controller_test.rb
refinerycms-0.9.6.25 test/functional/dashboard_controller_test.rb
refinerycms-0.9.6.24 test/functional/dashboard_controller_test.rb
refinerycms-0.9.6.23 test/functional/dashboard_controller_test.rb
refinerycms-0.9.6.22 test/functional/dashboard_controller_test.rb
refinerycms-0.9.6.21 test/functional/dashboard_controller_test.rb