10 lines
165 B
Ruby
10 lines
165 B
Ruby
|
require 'test_helper'
|
||
|
|
||
|
class InternalControllerTest < ActionController::TestCase
|
||
|
test "should get error" do
|
||
|
get :error
|
||
|
assert_response :success
|
||
|
end
|
||
|
|
||
|
end
|