21 lines
469 B
Ruby
21 lines
469 B
Ruby
require 'test_helper'
|
|
|
|
class StatusControllerTest < ActionDispatch::IntegrationTest
|
|
context "The status controller" do
|
|
should "work for a html response" do
|
|
get status_path
|
|
assert_response :success
|
|
end
|
|
|
|
should "work for a json response" do
|
|
get status_path(format: :json)
|
|
assert_response :success
|
|
end
|
|
|
|
should "work for an xml response" do
|
|
get status_path(format: :json)
|
|
assert_response :success
|
|
end
|
|
end
|
|
end
|