From 5c1e254181d146ff0711b1d7c86e37ea907f44cc Mon Sep 17 00:00:00 2001 From: Eric Davis Date: Tue, 9 Aug 2011 15:24:58 -0700 Subject: [PATCH] [#6441] Remove test code that is now in a setup block --- test/integration/deliverables_edit_test.rb | 6 ------ 1 file changed, 6 deletions(-) diff --git a/test/integration/deliverables_edit_test.rb b/test/integration/deliverables_edit_test.rb index e783b54..72c71f6 100644 --- a/test/integration/deliverables_edit_test.rb +++ b/test/integration/deliverables_edit_test.rb @@ -518,8 +518,6 @@ class DeliverablesEditTest < ActionController::IntegrationTest end should "be allowed to change the status on a locked deliverables to open" do - assert @fixed_deliverable.lock! - visit_contract_page(@contract) click_link_within "#deliverable_details_#{@fixed_deliverable.id}", 'Edit' assert_response :success @@ -537,8 +535,6 @@ class DeliverablesEditTest < ActionController::IntegrationTest end should "be allowed to change the status on a locked deliverables to closed" do - assert @fixed_deliverable.lock! - visit_contract_page(@contract) click_link_within "#deliverable_details_#{@fixed_deliverable.id}", 'Edit' assert_response :success @@ -599,8 +595,6 @@ class DeliverablesEditTest < ActionController::IntegrationTest end should "be allowed to change the status on a closed deliverables to open" do - assert @fixed_deliverable.close! - visit_contract_page(@contract) click_link_within "#deliverable_details_#{@fixed_deliverable.id}", 'Edit' assert_response :success