Makes versions resource shallow (#7403).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6183 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang
2011-07-05 16:29:06 +00:00
parent 25d900c787
commit 852cb183b1
8 changed files with 23 additions and 23 deletions

View File

@@ -74,10 +74,10 @@ class ApiTest::VersionsTest < ActionController::IntegrationTest
end
end
context "/projects/:project_id/versions/:id" do
context "/versions/:id" do
context "GET" do
should "return the version" do
get '/projects/1/versions/2.xml'
get '/versions/2.xml'
assert_response :success
assert_equal 'application/xml', @response.content_type
@@ -95,7 +95,7 @@ class ApiTest::VersionsTest < ActionController::IntegrationTest
context "PUT" do
should "update the version" do
put '/projects/1/versions/2.xml', {:version => {:name => 'API update'}}, :authorization => credentials('jsmith')
put '/versions/2.xml', {:version => {:name => 'API update'}}, :authorization => credentials('jsmith')
assert_response :ok
assert_equal 'API update', Version.find(2).name
@@ -105,7 +105,7 @@ class ApiTest::VersionsTest < ActionController::IntegrationTest
context "DELETE" do
should "destroy the version" do
assert_difference 'Version.count', -1 do
delete '/projects/1/versions/3.xml', {}, :authorization => credentials('jsmith')
delete '/versions/3.xml', {}, :authorization => credentials('jsmith')
end
assert_response :ok