mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
11 lines
215 B
Ruby
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
|