Reduced User#is_guest?, User#is_admin?, User#is_mod? calls
[punbbonrails.git] / test / functional / censoring_controller_test.rb
blob5e5e9e35c172a3af5f026950c05bb701f00981b0
1 require File.dirname(__FILE__) + '/../test_helper'
2 require 'censoring_controller'
4 # Re-raise errors caught by the controller.
5 class CensoringController; def rescue_action(e) raise e end; end
7 class CensoringControllerTest < Test::Unit::TestCase
8   def setup
9     @controller = CensoringController.new
10     @request    = ActionController::TestRequest.new
11     @response   = ActionController::TestResponse.new
12   end
14   # Replace this with your real tests.
15   def test_truth
16     assert true
17   end
18 end