]> git.openstreetmap.org Git - rails.git/blob - test/functional/geocoder_controller_test.rb
wrong foreign key command in the migration
[rails.git] / test / functional / geocoder_controller_test.rb
1 require File.dirname(__FILE__) + '/../test_helper'
2 require 'geocoder_controller'
3
4 # Re-raise errors caught by the controller.
5 class GeocoderController; def rescue_action(e) raise e end; end
6
7 class GeocoderControllerTest < Test::Unit::TestCase
8   def setup
9     @controller = GeocoderController.new
10     @request    = ActionController::TestRequest.new
11     @response   = ActionController::TestResponse.new
12   end
13
14   # Replace this with your real tests.
15   def test_truth
16     assert true
17   end
18 end