Deprecate and rename rss_* methods to atom_* methods (#15118).

Patch by Mischa The Evil and Marius BĂLTEANU


git-svn-id: http://svn.redmine.org/redmine/trunk@21467 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Marius Balteanu
2022-03-19 09:56:46 +00:00
parent 65a91d13a0
commit f286a6044b
36 changed files with 114 additions and 85 deletions

View File

@@ -59,8 +59,8 @@ class ApplicationTest < Redmine::IntegrationTest
get '/issues/4.atom'
assert_response 302
rss_key = User.find(2).rss_key
get "/issues/4.atom?key=#{rss_key}"
atom_key = User.find(2).atom_key
get "/issues/4.atom?key=#{atom_key}"
assert_response 200
assert_nil session[:user_id]
end