public_controller_test.rb
367 Bytes
require File.dirname(__FILE__) + '/../test_helper'
require 'public_controller'
# Re-raise errors caught by the controller.
class PublicController; def rescue_action(e) raise e end; end
class PublicControllerTest < ActionController::TestCase
  should 'inherit from ApplicationController' do
    assert_kind_of ApplicationController, PublicController.new
  end
end