rspec-stripe 0.0.4 → 0.0.5
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/lib/rspec-stripe/factories/card.rb +1 -1
- data/rspec-stripe.gemspec +1 -1
- data/spec/basic_rspec.rb +1 -1
- data/spec/runner_spec.rb +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aebb61edfdface38eac80af10ff04041889f6087
|
4
|
+
data.tar.gz: abbe9a69a548dc03c39ab7a6dcb066c2d650bc0d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f0a9c17d28a6c4a07a9c7f20cccd116779c96537d56af2bae45ac5ec3b5de20e2db4e98100bc6395439bc7fad5775de6de256ebb9bee18026b75e8efbe2b31ee
|
7
|
+
data.tar.gz: 745931ad0037f1fe8dc410696ab35c0e1bed18c098b421c31fe3ba62a15f71b93f861865a2eae323915bf2f3c3fa66a16f664a09a155e89116881cb6f1f06b6f
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -22,7 +22,7 @@ With RSpec-Stripe, you can say what you want for your spec, and have it injected
|
|
22
22
|
expect(stripe_subscription).to eq(nil)
|
23
23
|
end
|
24
24
|
|
25
|
-
it "gives me a subscription", stripe: { customer: :new, plan: "test", subscription: "test" } do
|
25
|
+
it "gives me a subscription", stripe: { customer: :new, plan: "test", card: :visa, subscription: "test" } do
|
26
26
|
expect(stripe_customer).not_to eq(nil)
|
27
27
|
expect(stripe_plan).not_to eq(nil)
|
28
28
|
expect(stripe_subscription).not_to eq(nil)
|
data/rspec-stripe.gemspec
CHANGED
data/spec/basic_rspec.rb
CHANGED
@@ -17,7 +17,7 @@ describe 'Basic' do
|
|
17
17
|
expect(stripe_subscription).to eq(nil)
|
18
18
|
end
|
19
19
|
|
20
|
-
it "gives me a subscription", stripe: { customer: :new, plan: "test", subscription: "test" } do
|
20
|
+
it "gives me a subscription", stripe: { customer: :new, plan: "test", card: :visa, subscription: "test" } do
|
21
21
|
expect(stripe_customer).not_to eq(nil)
|
22
22
|
expect(stripe_plan).not_to eq(nil)
|
23
23
|
expect(stripe_subscription).not_to eq(nil)
|
data/spec/runner_spec.rb
CHANGED