Files
danbooru/test/functional/robots_controller_test.rb
2020-03-30 12:36:06 -05:00

11 lines
219 B
Ruby

require "test_helper"
class RobotsControllerTest < ActionDispatch::IntegrationTest
context "index action" do
should "work" do
get robots_path(format: :text)
assert_response :success
end
end
end