9 lines
165 B
Ruby
9 lines
165 B
Ruby
require "test_helper"
|
|
|
|
class AdminControllerTest < ActionController::TestCase
|
|
test "should get status" do
|
|
get :status
|
|
assert_response :redirect
|
|
end
|
|
|
|
end
|