workarea-storefront 3.4.33 → 3.4.34
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4bbdb37ed168c54fc07a70fabbb88326c0701c557d22dd037bd806620875ff26
|
4
|
+
data.tar.gz: ced79547f1104eea3896235cdb26055385ef360ce9207d49370547ce34672891
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e2d82fd8aaee4f4192cffe3ed8d238f4e442558d913f5e6752286088d0d9a4263be0d6fa5d08ac92732ad44c4ec7243f7485c6fba4569f5784550c1f479025ec
|
7
|
+
data.tar.gz: 87e9d758015728e89cfe83a016fcba1ec426ca49e8455211a9c8badcc0d8d49e453b526fff0cab0ccd8530018291427193a8b44cd0a002b0db802bbe4818a842
|
@@ -262,6 +262,32 @@ module Workarea
|
|
262
262
|
|
263
263
|
assert(flash[:error].present?)
|
264
264
|
end
|
265
|
+
|
266
|
+
def test_no_required_shipping_address_options_flash_message
|
267
|
+
product = create_product(digital: true)
|
268
|
+
|
269
|
+
post storefront.cart_items_path,
|
270
|
+
params: { product_id: product.id, sku: product.skus.first, quantity: 1 }
|
271
|
+
|
272
|
+
get storefront.checkout_addresses_path
|
273
|
+
|
274
|
+
patch storefront.checkout_addresses_path,
|
275
|
+
params: {
|
276
|
+
email: 'bcrouse@weblinc.com',
|
277
|
+
billing_address: {
|
278
|
+
first_name: 'Ben',
|
279
|
+
last_name: 'Crouse',
|
280
|
+
street: '12 N. 3rd St.',
|
281
|
+
city: 'Philadelphia',
|
282
|
+
region: 'PA',
|
283
|
+
postal_code: '19106',
|
284
|
+
country: 'US',
|
285
|
+
phone_number: '2159251800'
|
286
|
+
}
|
287
|
+
}
|
288
|
+
|
289
|
+
refute(flash[:error].present?)
|
290
|
+
end
|
265
291
|
end
|
266
292
|
end
|
267
293
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: workarea-storefront
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.4.
|
4
|
+
version: 3.4.34
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ben Crouse
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-06-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: workarea-core
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.4.
|
19
|
+
version: 3.4.34
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.4.
|
26
|
+
version: 3.4.34
|
27
27
|
description: Provides user-facing ecommerce storefront functionality for the Workarea
|
28
28
|
Commerce Platform.
|
29
29
|
email:
|