Links para agregar respuestas fuera de los divs
[donaciones.git] / test / functional / personas_controller_test.rb
blob77a5b300a24c24eae6ab63fb4d7efc0af3459639
1 require File.dirname(__FILE__) + '/../test_helper'
2 require 'personas_controller'
4 # Re-raise errors caught by the controller.
5 class PersonasController; def rescue_action(e) raise e end; end
7 class PersonasControllerTest < Test::Unit::TestCase
8   def setup
9     @controller = PersonasController.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