mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
30 lines
826 B
Ruby
30 lines
826 B
Ruby
require 'spec_helper'
|
|
|
|
feature 'shipping methods' do
|
|
include AuthenticationWorkflow
|
|
include WebHelper
|
|
|
|
before :each do
|
|
login_to_admin_section
|
|
@sm = create(:shipping_method)
|
|
end
|
|
|
|
scenario "deleting a shipping method" do
|
|
visit_delete spree.admin_shipping_method_path(@sm)
|
|
|
|
page.should have_content "Shipping method \"#{@sm.name}\" has been successfully removed!"
|
|
Spree::ShippingMethod.where(:id => @sm.id).should be_empty
|
|
end
|
|
|
|
scenario "deleting a shipping method referenced by an order" do
|
|
o = create(:order)
|
|
o.shipping_method = @sm
|
|
o.save!
|
|
|
|
visit_delete spree.admin_shipping_method_path(@sm)
|
|
|
|
page.should have_content "That shipping method cannot be deleted as it is referenced by an order: #{o.number}."
|
|
Spree::ShippingMethod.find(@sm.id).should_not be_nil
|
|
end
|
|
end
|