12 lines
235 B
Ruby
12 lines
235 B
Ruby
require 'test_helper'
|
|
|
|
# Test the geocoding life cycle
|
|
class MapsControllerTest < ActionController::TestCase
|
|
include Devise::Test::ControllerHelpers
|
|
|
|
test 'should get index' do
|
|
get :index
|
|
assert_response :success
|
|
end
|
|
end
|