[#6441] Remove test code that is now in a setup block

This commit is contained in:
Eric Davis
2011-08-09 15:24:58 -07:00
parent 0a916fea70
commit 5c1e254181

View File

@@ -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