diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-07-05 16:29:06 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-07-05 16:29:06 +0000 |
commit | 852cb183b184f65e352f2619250782f6de7dbfd9 (patch) | |
tree | bacd85635f079a51f66ca70c7225cae8cc8c382c /test/integration/api_test/versions_test.rb | |
parent | 25d900c78791906c1a514f61b29ebddbe4647270 (diff) | |
download | redmine-852cb183b184f65e352f2619250782f6de7dbfd9.tar.gz redmine-852cb183b184f65e352f2619250782f6de7dbfd9.zip |
Makes versions resource shallow (#7403).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6183 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration/api_test/versions_test.rb')
-rw-r--r-- | test/integration/api_test/versions_test.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/integration/api_test/versions_test.rb b/test/integration/api_test/versions_test.rb index 3872676ae..2ffb74b58 100644 --- a/test/integration/api_test/versions_test.rb +++ b/test/integration/api_test/versions_test.rb @@ -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 |