nimbleshop_simply 0.0.13 → 0.0.14.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,19 +4,19 @@ class PaymentConfirmationAcceptanceTest < ActionDispatch::IntegrationTest
|
|
4
4
|
|
5
5
|
test "show order when it was paid using splitable" do
|
6
6
|
order = create :order_paid_using_splitable
|
7
|
-
visit
|
7
|
+
visit main_theme.order_path(order)
|
8
8
|
assert page.has_content?('Purchase is complete')
|
9
9
|
end
|
10
10
|
|
11
11
|
test "show order when it was paid using paypalwp" do
|
12
12
|
order = create :order_paid_using_paypalwp
|
13
|
-
visit
|
13
|
+
visit main_theme.order_path(order)
|
14
14
|
assert page.has_content?('Purchase is complete')
|
15
15
|
end
|
16
16
|
|
17
17
|
test "show order when it was paid using authorizedotnet" do
|
18
18
|
order = create :order_paid_using_authorizedotnet
|
19
|
-
visit
|
19
|
+
visit main_theme.order_path(order)
|
20
20
|
assert page.has_content?('Purchase is complete')
|
21
21
|
assert page.has_content?('In the credit card statement name of the company would appear as Nimbleshop LLC')
|
22
22
|
end
|
@@ -2,11 +2,11 @@ require 'test_helper'
|
|
2
2
|
|
3
3
|
class ProductAcceptanceTest < ActionDispatch::IntegrationTest
|
4
4
|
setup do
|
5
|
-
@product = create
|
5
|
+
@product = create :product, name: 'ipad', description: 'awesome ipad from Apple'
|
6
6
|
end
|
7
7
|
|
8
8
|
test "show page" do
|
9
|
-
visit
|
9
|
+
visit main_theme.product_path(@product)
|
10
10
|
assert page.has_content?('awesome ipad from Apple')
|
11
11
|
end
|
12
12
|
end
|
metadata
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nimbleshop_simply
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.0.14.rc1
|
5
|
+
prerelease: 7
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Neeraj Singh
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2012-12-
|
13
|
+
date: 2012-12-06 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: jquery-rails
|
@@ -200,16 +200,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
200
200
|
version: '0'
|
201
201
|
segments:
|
202
202
|
- 0
|
203
|
-
hash:
|
203
|
+
hash: 1836589125865276422
|
204
204
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
205
205
|
none: false
|
206
206
|
requirements:
|
207
|
-
- - ! '
|
207
|
+
- - ! '>'
|
208
208
|
- !ruby/object:Gem::Version
|
209
|
-
version:
|
210
|
-
segments:
|
211
|
-
- 0
|
212
|
-
hash: 3196141141041621158
|
209
|
+
version: 1.3.1
|
213
210
|
requirements: []
|
214
211
|
rubyforge_project:
|
215
212
|
rubygems_version: 1.8.24
|