10 lines
192 B
Ruby
10 lines
192 B
Ruby
require 'test_helper'
|
|
|
|
# Test the geocoding life cycle
|
|
class MapsControllerTest < ActionController::TestCase
|
|
test 'should get index' do
|
|
get :index
|
|
assert_response :success
|
|
end
|
|
end
|