Sha256: 3a708fdc5c4c9f1f90c50a3729621b1a7cfeef976eee6d4f403e5d7581130ab0

Contents?: true

Size: 850 Bytes

Versions: 2

Compression:

Stored size: 850 Bytes

Contents

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

# Re-raise errors caught by the controller.
class Admin::ThemesController; def rescue_action(e) raise e end; end

class Admin::ThemesControllerTest < Test::Unit::TestCase
  fixtures :users

  def setup
    @controller = Admin::ThemesController.new
    @request    = ActionController::TestRequest.new
    @response   = ActionController::TestResponse.new

    @request.session = { :user => users(:tobi) }
  end

  # Replace this with your real tests.
  def test_index
    get :index
    assert_response :success
    assert_not_nil assigns(:themes)
  end

  def test_switchto
    get :switchto, :theme => 'azure'
    assert_response :redirect, :action => 'index'
  end

  def test_preview
    get :preview, :theme => 'azure'
    assert_response :success
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
typo-4.1.1 test/functional/admin/themes_controller_test.rb
typo-4.1 test/functional/admin/themes_controller_test.rb