Fixup for a1cd9d2b5. The route order matters here, the legacy endpoints
need to go first.
26 lines
525 B
Ruby
26 lines
525 B
Ruby
require 'test_helper'
|
|
|
|
class LegacyControllerTest < ActionDispatch::IntegrationTest
|
|
context "The legacy controller" do
|
|
context "post action" do
|
|
should "work" do
|
|
get "/post/index.xml"
|
|
assert_response :success
|
|
|
|
get "/post/index.json"
|
|
assert_response :success
|
|
end
|
|
end
|
|
|
|
context "tag action" do
|
|
should "work" do
|
|
get "/tag/index.xml"
|
|
assert_response :success
|
|
|
|
get "/tag/index.json"
|
|
assert_response :success
|
|
end
|
|
end
|
|
end
|
|
end
|