Sha256: c8c816ae61106144f1377f157527471b816e88bb99e2b29b8bfd5d713d4eb633
Contents?: true
Size: 474 Bytes
Versions: 13
Compression:
Stored size: 474 Bytes
Contents
require File.dirname(__FILE__) + '/../test_helper' require 'fast_controller' # Re-raise errors caught by the controller. class FastController; def rescue_action(e) raise e end; end class FastControllerTest < Test::Unit::TestCase def setup @controller = FastController.new @request = ActionController::TestRequest.new @response = ActionController::TestResponse.new end # Replace this with your real tests. def test_truth assert true end end
Version data entries
13 entries across 13 versions & 10 rubygems