Files
openfoodnetwork/spec/controllers/spree/paypal_controller_spec.rb
2014-07-25 12:44:14 +10:00

11 lines
215 B
Ruby

require 'spec_helper'
module Spree
describe PaypalController do
it "should redirect back to checkout after cancel" do
spree_get :cancel
response.should redirect_to checkout_path
end
end
end