Sha256: 4979c3887434481029599303f67c8fcf19d71a3ac6482f2b66ab9dc08df56c7d
Contents?: true
Size: 482 Bytes
Versions: 7
Compression:
Stored size: 482 Bytes
Contents
require File.dirname(__FILE__) + '/../test_helper' require 'person_controller' # Re-raise errors caught by the controller. class PersonController; def rescue_action(e) raise e end; end class PersonControllerTest < Test::Unit::TestCase def setup @controller = PersonController.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
7 entries across 7 versions & 1 rubygems