9 lines
160 B
Ruby
9 lines
160 B
Ruby
require 'test_helper'
|
|
|
|
class MappingControllerTest < ActionController::TestCase
|
|
test "should get new" do
|
|
get :new
|
|
assert_response :success
|
|
end
|
|
|
|
end
|