recurly 0.2.1 → 0.2.2

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.

Potentially problematic release.


This version of recurly might be problematic. Click here for more details.

Files changed (64) hide show
  1. data/README.md +3 -2
  2. data/lib/recurly/invoice.rb +1 -1
  3. data/lib/recurly/subscription.rb +1 -1
  4. data/lib/recurly/transaction.rb +1 -1
  5. data/lib/recurly/version.rb +1 -1
  6. data/spec/integration/subscription_spec.rb +29 -8
  7. data/spec/vcr/account/close/1286666929.yml +159 -0
  8. data/spec/vcr/account/create-blank/1286666929.yml +49 -0
  9. data/spec/vcr/account/create-duplicate/1286666929.yml +95 -0
  10. data/spec/vcr/account/create-min/1286666929.yml +63 -0
  11. data/spec/vcr/account/create/1286666929.yml +67 -0
  12. data/spec/vcr/account/find/1286666929.yml +122 -0
  13. data/spec/vcr/account/list/1286666929.yml +1565 -0
  14. data/spec/vcr/account/update/1286666929.yml +250 -0
  15. data/spec/vcr/billing/create/1286682213.yml +210 -0
  16. data/spec/vcr/billing/destroy/1286682213.yml +309 -0
  17. data/spec/vcr/billing/find/1286682213.yml +273 -0
  18. data/spec/vcr/billing/update/1286682213.yml +292 -0
  19. data/spec/vcr/charge/create/1286681273.yml +253 -0
  20. data/spec/vcr/charge/list-all/1286681273.yml +302 -0
  21. data/spec/vcr/charge/list-invoiced/1286681273.yml +445 -0
  22. data/spec/vcr/charge/list-pending/1286681273.yml +302 -0
  23. data/spec/vcr/charge/lookup/1286681273.yml +171 -0
  24. data/spec/vcr/credit/create/1286681343.yml +171 -0
  25. data/spec/vcr/credit/list/1286681343.yml +299 -0
  26. data/spec/vcr/credit/lookup/1286681343.yml +171 -0
  27. data/spec/vcr/invoice/create/1286679184.yml +337 -0
  28. data/spec/vcr/invoice/list/1286679184.yml +458 -0
  29. data/spec/vcr/invoice/lookup/1286679184.yml +341 -0
  30. data/spec/vcr/plan/all.yml +306 -0
  31. data/spec/vcr/plan/delete/1286677585.yml +217 -0
  32. data/spec/vcr/plan/find.yml +196 -0
  33. data/spec/vcr/plan/update.yml +197 -0
  34. data/spec/vcr/subscription/cancel/1287036910.yml +401 -0
  35. data/spec/vcr/subscription/cancel/1287037325.yml +401 -0
  36. data/spec/vcr/subscription/cancel/1287037363.yml +401 -0
  37. data/spec/vcr/subscription/change1/1287036910.yml +409 -0
  38. data/spec/vcr/subscription/change1/1287037152.yml +409 -0
  39. data/spec/vcr/subscription/change1/1287037325.yml +409 -0
  40. data/spec/vcr/subscription/change1/1287037363.yml +409 -0
  41. data/spec/vcr/subscription/change2/1287036910.yml +409 -0
  42. data/spec/vcr/subscription/change2/1287037152.yml +283 -0
  43. data/spec/vcr/subscription/change2/1287037325.yml +283 -0
  44. data/spec/vcr/subscription/change2/1287037363.yml +409 -0
  45. data/spec/vcr/subscription/create/1287036910.yml +224 -0
  46. data/spec/vcr/subscription/create/1287037152.yml +224 -0
  47. data/spec/vcr/subscription/create/1287037325.yml +224 -0
  48. data/spec/vcr/subscription/create/1287037363.yml +224 -0
  49. data/spec/vcr/subscription/find/1287036910.yml +283 -0
  50. data/spec/vcr/subscription/find/1287037152.yml +283 -0
  51. data/spec/vcr/subscription/find/1287037325.yml +283 -0
  52. data/spec/vcr/subscription/find/1287037363.yml +283 -0
  53. data/spec/vcr/subscription/refund/1287036910.yml +382 -0
  54. data/spec/vcr/subscription/refund/1287037325.yml +382 -0
  55. data/spec/vcr/subscription/refund/1287037363.yml +382 -0
  56. data/spec/vcr/transaction/all/1286674805.yml +387 -0
  57. data/spec/vcr/transaction/create-no-account/1286674805.yml +91 -0
  58. data/spec/vcr/transaction/create-with-account/1286674805.yml +220 -0
  59. data/spec/vcr/transaction/list-empty/1286674805.yml +212 -0
  60. data/spec/vcr/transaction/list-filled/1286674805.yml +476 -0
  61. data/spec/vcr/transaction/lookup/1286674805.yml +548 -0
  62. data/spec/vcr/transaction/refund/1286674805.yml +220 -0
  63. data/spec/vcr/transaction/void/1286674805.yml +668 -0
  64. metadata +118 -4
@@ -0,0 +1,91 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :post
5
+ uri: https://railsjedi%40sogetthis.com:7PCB2mZC@recurlytest3-test.recurly.com:443/transactions.xml
6
+ body: |
7
+ <?xml version="1.0" encoding="UTF-8"?>
8
+ <transaction>
9
+ <account>
10
+ <company-name>Recurly Ruby Gem</company-name>
11
+ <account-code>transaction-create-with-accout-1286674805</account-code>
12
+ <last-name>Test</last-name>
13
+ <billing-info>
14
+ <city>San Francisco</city>
15
+ <address1>123 Test St</address1>
16
+ <zip>94115</zip>
17
+ <country>US</country>
18
+ <credit-card>
19
+ <number>1</number>
20
+ <month type="integer">10</month>
21
+ <year type="integer">2011</year>
22
+ <verification-value>123</verification-value>
23
+ </credit-card>
24
+ <state>CA</state>
25
+ </billing-info>
26
+ <email>verena@test.com</email>
27
+ <first-name>Verena</first-name>
28
+ </account>
29
+ <amount-in-cents type="integer">700</amount-in-cents>
30
+ <description>setup fee of 7 dollarz</description>
31
+ </transaction>
32
+
33
+ headers:
34
+ accept:
35
+ - "*/*"
36
+ connection:
37
+ - close
38
+ content-type:
39
+ - application/xml
40
+ authorization:
41
+ - Basic cmFpbHNqZWRpQHNvZ2V0dGhpcy5jb206N1BDQjJtWkM=
42
+ response: !ruby/struct:VCR::Response
43
+ status: !ruby/struct:VCR::ResponseStatus
44
+ code: 201
45
+ message: Created
46
+ headers:
47
+ location:
48
+ - https://recurlytest3-test.recurly.com/transactions/a8412dd64e6842cd82de85784398069f
49
+ connection:
50
+ - close
51
+ content-type:
52
+ - application/xml; charset=utf-8
53
+ x-runtime:
54
+ - "853"
55
+ date:
56
+ - Thu, 14 Oct 2010 06:17:30 GMT
57
+ server:
58
+ - nginx/0.7.65
59
+ content-length:
60
+ - "864"
61
+ set-cookie:
62
+ - account_credentials=0169c16349f778ea72c29dac81316bb302459fac09a307f72a9d429bce01af65133dd5ba93a6bdb6584f65929e27c6d106821a3429663741b73bf1d9a622c897%3A%3A; domain=.recurly.com; path=/; secure; HttpOnly
63
+ - ""
64
+ - _recurly_session=d23d61e9f099c0f4f41a89e53c0257b5; domain=.recurly.com; path=/; Secure; HttpOnly
65
+ cache-control:
66
+ - no-cache
67
+ body: |
68
+ <?xml version="1.0" encoding="UTF-8"?>
69
+ <transaction type="Payment">
70
+ <id>a8412dd64e6842cd82de85784398069f</id>
71
+ <account_code>transaction-create-with-accout-1286674805</account_code>
72
+ <action>purchase</action>
73
+ <date type="datetime">2010-10-14T06:17:29Z</date>
74
+ <amount_in_cents type="integer">700</amount_in_cents>
75
+ <status>success</status>
76
+ <message>Test Gateway: Successful test transaction</message>
77
+ <reference></reference>
78
+ <cvv_result code="M">Match</cvv_result>
79
+ <avs_result code="D">Street address and postal code match.</avs_result>
80
+ <avs_result_street></avs_result_street>
81
+ <avs_result_postal></avs_result_postal>
82
+ <test type="boolean">true</test>
83
+ <voidable type="boolean">true</voidable>
84
+ <refundable type="boolean">true</refundable>
85
+ <credit_card>
86
+ <type>unknown</type>
87
+ <last_four>1</last_four>
88
+ </credit_card>
89
+ </transaction>
90
+
91
+ http_version: "1.1"
@@ -0,0 +1,220 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :post
5
+ uri: https://railsjedi%40sogetthis.com:7PCB2mZC@recurlytest3-test.recurly.com:443/accounts.xml
6
+ body: |
7
+ <?xml version="1.0" encoding="UTF-8"?>
8
+ <account>
9
+ <company-name>Recurly Ruby Gem</company-name>
10
+ <account-code>transaction-create-with-account-1286674805</account-code>
11
+ <last-name>Test</last-name>
12
+ <email>verena@test.com</email>
13
+ <first-name>Verena</first-name>
14
+ </account>
15
+
16
+ headers:
17
+ accept:
18
+ - "*/*"
19
+ connection:
20
+ - close
21
+ content-type:
22
+ - application/xml
23
+ authorization:
24
+ - Basic cmFpbHNqZWRpQHNvZ2V0dGhpcy5jb206N1BDQjJtWkM=
25
+ response: !ruby/struct:VCR::Response
26
+ status: !ruby/struct:VCR::ResponseStatus
27
+ code: 201
28
+ message: Created
29
+ headers:
30
+ location:
31
+ - https://recurlytest3-test.recurly.com/accounts/transaction-create-with-account-1286674805
32
+ connection:
33
+ - close
34
+ content-type:
35
+ - application/xml; charset=utf-8
36
+ x-runtime:
37
+ - "727"
38
+ date:
39
+ - Thu, 14 Oct 2010 06:17:31 GMT
40
+ server:
41
+ - nginx/0.7.65
42
+ content-length:
43
+ - "617"
44
+ set-cookie:
45
+ - account_credentials=94ddf4e795f406912aafa123161bd85559a663375acfe79c7380852144b3ca0134cd9e89c77333b4b3570626b199556b14c91b227a5cc73388165486c041ecd0%3A%3A; domain=.recurly.com; path=/; secure; HttpOnly
46
+ - ""
47
+ - _recurly_session=d3a857430277bd42f1ee476102691d9f; domain=.recurly.com; path=/; Secure; HttpOnly
48
+ cache-control:
49
+ - no-cache
50
+ body: |
51
+ <?xml version="1.0" encoding="UTF-8"?>
52
+ <account>
53
+ <id>transaction-create-with-account-1286674805</id>
54
+ <account_code>transaction-create-with-account-1286674805</account_code>
55
+ <username></username>
56
+ <email>verena@test.com</email>
57
+ <first_name>Verena</first_name>
58
+ <last_name>Test</last_name>
59
+ <company_name>Recurly Ruby Gem</company_name>
60
+ <balance_in_cents type="integer">0</balance_in_cents>
61
+ <closed type="boolean">false</closed>
62
+ <hosted_login_token>705280e5cd5448c994d591bacd4adc40</hosted_login_token>
63
+ <created_at type="datetime">2010-10-14T06:17:31Z</created_at>
64
+ <state>active</state>
65
+ </account>
66
+
67
+ http_version: "1.1"
68
+ - !ruby/struct:VCR::HTTPInteraction
69
+ request: !ruby/struct:VCR::Request
70
+ method: :put
71
+ uri: https://railsjedi%40sogetthis.com:7PCB2mZC@recurlytest3-test.recurly.com:443/accounts/transaction-create-with-account-1286674805/billing_info.xml
72
+ body: |
73
+ <?xml version="1.0" encoding="UTF-8"?>
74
+ <billing-info>
75
+ <city>San Francisco</city>
76
+ <address1>123 Test St</address1>
77
+ <zip>94115</zip>
78
+ <account-code>transaction-create-with-account-1286674805</account-code>
79
+ <country>US</country>
80
+ <credit-card>
81
+ <number>1</number>
82
+ <month type="integer">10</month>
83
+ <year type="integer">2011</year>
84
+ <verification-value>123</verification-value>
85
+ </credit-card>
86
+ <last-name>Test</last-name>
87
+ <first-name>Verena</first-name>
88
+ <state>CA</state>
89
+ </billing-info>
90
+
91
+ headers:
92
+ accept:
93
+ - "*/*"
94
+ connection:
95
+ - close
96
+ content-type:
97
+ - application/xml
98
+ authorization:
99
+ - Basic cmFpbHNqZWRpQHNvZ2V0dGhpcy5jb206N1BDQjJtWkM=
100
+ response: !ruby/struct:VCR::Response
101
+ status: !ruby/struct:VCR::ResponseStatus
102
+ code: 200
103
+ message: OK
104
+ headers:
105
+ x-ua-compatible:
106
+ - IE=Edge
107
+ etag:
108
+ - "\"37cf23d79262575f6ae23103f6d0a4ce\""
109
+ connection:
110
+ - close
111
+ content-type:
112
+ - application/xml; charset=utf-8
113
+ x-runtime:
114
+ - "223"
115
+ date:
116
+ - Thu, 14 Oct 2010 06:17:32 GMT
117
+ server:
118
+ - nginx/0.7.65
119
+ content-length:
120
+ - "656"
121
+ set-cookie:
122
+ - _recurly_session=13a07b77f523e53356e7a6512ab4c331; domain=.recurly.com; path=/; Secure; HttpOnly
123
+ cache-control:
124
+ - private, max-age=0, must-revalidate
125
+ body: |
126
+ <?xml version="1.0" encoding="UTF-8"?>
127
+ <billing_info>
128
+ <account_code>transaction-create-with-account-1286674805</account_code>
129
+ <first_name>Verena</first_name>
130
+ <last_name>Test</last_name>
131
+ <address1>123 Test St</address1>
132
+ <address2></address2>
133
+ <city>San Francisco</city>
134
+ <state>CA</state>
135
+ <country>US</country>
136
+ <zip>94115</zip>
137
+ <phone></phone>
138
+ <vat_number></vat_number>
139
+ <ip_address></ip_address>
140
+ <credit_card>
141
+ <type>bogus</type>
142
+ <last_four>1</last_four>
143
+ <month type="integer">10</month>
144
+ <year type="integer">2011</year>
145
+ </credit_card>
146
+ <updated_at type="datetime">2010-10-14T06:17:32Z</updated_at>
147
+ </billing_info>
148
+
149
+ http_version: "1.1"
150
+ - !ruby/struct:VCR::HTTPInteraction
151
+ request: !ruby/struct:VCR::Request
152
+ method: :post
153
+ uri: https://railsjedi%40sogetthis.com:7PCB2mZC@recurlytest3-test.recurly.com:443/transactions.xml
154
+ body: |
155
+ <?xml version="1.0" encoding="UTF-8"?>
156
+ <transaction>
157
+ <account>
158
+ <account-code>transaction-create-with-account-1286674805</account-code>
159
+ </account>
160
+ <amount-in-cents type="integer">700</amount-in-cents>
161
+ <description>test transaction for $7</description>
162
+ </transaction>
163
+
164
+ headers:
165
+ accept:
166
+ - "*/*"
167
+ connection:
168
+ - close
169
+ content-type:
170
+ - application/xml
171
+ authorization:
172
+ - Basic cmFpbHNqZWRpQHNvZ2V0dGhpcy5jb206N1BDQjJtWkM=
173
+ response: !ruby/struct:VCR::Response
174
+ status: !ruby/struct:VCR::ResponseStatus
175
+ code: 201
176
+ message: Created
177
+ headers:
178
+ location:
179
+ - https://recurlytest3-test.recurly.com/transactions/d22cec47f35d4cce9885093e748969e0
180
+ connection:
181
+ - close
182
+ content-type:
183
+ - application/xml; charset=utf-8
184
+ x-runtime:
185
+ - "351"
186
+ date:
187
+ - Thu, 14 Oct 2010 06:17:33 GMT
188
+ server:
189
+ - nginx/0.7.65
190
+ content-length:
191
+ - "863"
192
+ set-cookie:
193
+ - _recurly_session=d43182cea4253eba8a367785d2e29708; domain=.recurly.com; path=/; Secure; HttpOnly
194
+ cache-control:
195
+ - no-cache
196
+ body: |
197
+ <?xml version="1.0" encoding="UTF-8"?>
198
+ <transaction type="Payment">
199
+ <id>d22cec47f35d4cce9885093e748969e0</id>
200
+ <account_code>transaction-create-with-account-1286674805</account_code>
201
+ <action>purchase</action>
202
+ <date type="datetime">2010-10-14T06:17:33Z</date>
203
+ <amount_in_cents type="integer">700</amount_in_cents>
204
+ <status>success</status>
205
+ <message>Test Gateway: Successful test transaction</message>
206
+ <reference></reference>
207
+ <cvv_result code="M">Match</cvv_result>
208
+ <avs_result code="D">Street address and postal code match.</avs_result>
209
+ <avs_result_street></avs_result_street>
210
+ <avs_result_postal></avs_result_postal>
211
+ <test type="boolean">true</test>
212
+ <voidable type="boolean">true</voidable>
213
+ <refundable type="boolean">true</refundable>
214
+ <credit_card>
215
+ <type>bogus</type>
216
+ <last_four>1</last_four>
217
+ </credit_card>
218
+ </transaction>
219
+
220
+ http_version: "1.1"
@@ -0,0 +1,212 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :post
5
+ uri: https://railsjedi%40sogetthis.com:7PCB2mZC@recurlytest3-test.recurly.com:443/accounts.xml
6
+ body: |
7
+ <?xml version="1.0" encoding="UTF-8"?>
8
+ <account>
9
+ <company-name>Recurly Ruby Gem</company-name>
10
+ <account-code>transaction-list-empty-1286674805</account-code>
11
+ <last-name>Test</last-name>
12
+ <email>verena@test.com</email>
13
+ <first-name>Verena</first-name>
14
+ </account>
15
+
16
+ headers:
17
+ accept:
18
+ - "*/*"
19
+ connection:
20
+ - close
21
+ content-type:
22
+ - application/xml
23
+ authorization:
24
+ - Basic cmFpbHNqZWRpQHNvZ2V0dGhpcy5jb206N1BDQjJtWkM=
25
+ response: !ruby/struct:VCR::Response
26
+ status: !ruby/struct:VCR::ResponseStatus
27
+ code: 201
28
+ message: Created
29
+ headers:
30
+ location:
31
+ - https://recurlytest3-test.recurly.com/accounts/transaction-list-empty-1286674805
32
+ connection:
33
+ - close
34
+ content-type:
35
+ - application/xml; charset=utf-8
36
+ x-runtime:
37
+ - "569"
38
+ date:
39
+ - Thu, 14 Oct 2010 06:17:36 GMT
40
+ server:
41
+ - nginx/0.7.65
42
+ content-length:
43
+ - "599"
44
+ set-cookie:
45
+ - account_credentials=712cd37f91bdfc5f2956e2955342b5565f32a6d669cc4e2082786d7435fc765e4f8a3508e4916b0817d510065dd38647450ce3e07ccee6f535f14c42434c8fe2%3A%3A; domain=.recurly.com; path=/; secure; HttpOnly
46
+ - ""
47
+ - _recurly_session=33662d8ca39ce5d8622cdd73bad81f6c; domain=.recurly.com; path=/; Secure; HttpOnly
48
+ cache-control:
49
+ - no-cache
50
+ body: |
51
+ <?xml version="1.0" encoding="UTF-8"?>
52
+ <account>
53
+ <id>transaction-list-empty-1286674805</id>
54
+ <account_code>transaction-list-empty-1286674805</account_code>
55
+ <username></username>
56
+ <email>verena@test.com</email>
57
+ <first_name>Verena</first_name>
58
+ <last_name>Test</last_name>
59
+ <company_name>Recurly Ruby Gem</company_name>
60
+ <balance_in_cents type="integer">0</balance_in_cents>
61
+ <closed type="boolean">false</closed>
62
+ <hosted_login_token>de140463bba146869a51b312b2f2ccce</hosted_login_token>
63
+ <created_at type="datetime">2010-10-14T06:17:36Z</created_at>
64
+ <state>active</state>
65
+ </account>
66
+
67
+ http_version: "1.1"
68
+ - !ruby/struct:VCR::HTTPInteraction
69
+ request: !ruby/struct:VCR::Request
70
+ method: :put
71
+ uri: https://railsjedi%40sogetthis.com:7PCB2mZC@recurlytest3-test.recurly.com:443/accounts/transaction-list-empty-1286674805/billing_info.xml
72
+ body: |
73
+ <?xml version="1.0" encoding="UTF-8"?>
74
+ <billing-info>
75
+ <city>San Francisco</city>
76
+ <address1>123 Test St</address1>
77
+ <zip>94115</zip>
78
+ <account-code>transaction-list-empty-1286674805</account-code>
79
+ <country>US</country>
80
+ <credit-card>
81
+ <number>1</number>
82
+ <month type="integer">10</month>
83
+ <year type="integer">2011</year>
84
+ <verification-value>123</verification-value>
85
+ </credit-card>
86
+ <last-name>Test</last-name>
87
+ <first-name>Verena</first-name>
88
+ <state>CA</state>
89
+ </billing-info>
90
+
91
+ headers:
92
+ accept:
93
+ - "*/*"
94
+ connection:
95
+ - close
96
+ content-type:
97
+ - application/xml
98
+ authorization:
99
+ - Basic cmFpbHNqZWRpQHNvZ2V0dGhpcy5jb206N1BDQjJtWkM=
100
+ response: !ruby/struct:VCR::Response
101
+ status: !ruby/struct:VCR::ResponseStatus
102
+ code: 200
103
+ message: OK
104
+ headers:
105
+ x-ua-compatible:
106
+ - IE=Edge
107
+ etag:
108
+ - "\"e46dfcc850fe02cfac758ee6780e81b2\""
109
+ connection:
110
+ - close
111
+ content-type:
112
+ - application/xml; charset=utf-8
113
+ x-runtime:
114
+ - "244"
115
+ date:
116
+ - Thu, 14 Oct 2010 06:17:37 GMT
117
+ server:
118
+ - nginx/0.7.65
119
+ content-length:
120
+ - "647"
121
+ set-cookie:
122
+ - _recurly_session=26d466ddab7ac579d0d68ba63f67aabf; domain=.recurly.com; path=/; Secure; HttpOnly
123
+ cache-control:
124
+ - private, max-age=0, must-revalidate
125
+ body: |
126
+ <?xml version="1.0" encoding="UTF-8"?>
127
+ <billing_info>
128
+ <account_code>transaction-list-empty-1286674805</account_code>
129
+ <first_name>Verena</first_name>
130
+ <last_name>Test</last_name>
131
+ <address1>123 Test St</address1>
132
+ <address2></address2>
133
+ <city>San Francisco</city>
134
+ <state>CA</state>
135
+ <country>US</country>
136
+ <zip>94115</zip>
137
+ <phone></phone>
138
+ <vat_number></vat_number>
139
+ <ip_address></ip_address>
140
+ <credit_card>
141
+ <type>bogus</type>
142
+ <last_four>1</last_four>
143
+ <month type="integer">10</month>
144
+ <year type="integer">2011</year>
145
+ </credit_card>
146
+ <updated_at type="datetime">2010-10-14T06:17:37Z</updated_at>
147
+ </billing_info>
148
+
149
+ http_version: "1.1"
150
+ - !ruby/struct:VCR::HTTPInteraction
151
+ request: !ruby/struct:VCR::Request
152
+ method: :get
153
+ uri: https://railsjedi%40sogetthis.com:7PCB2mZC@recurlytest3-test.recurly.com:443/accounts/transaction-list-empty-1286674805/transactions
154
+ body:
155
+ headers:
156
+ accept:
157
+ - application/xml
158
+ connection:
159
+ - close
160
+ authorization:
161
+ - Basic cmFpbHNqZWRpQHNvZ2V0dGhpcy5jb206N1BDQjJtWkM=
162
+ response: !ruby/struct:VCR::Response
163
+ status: !ruby/struct:VCR::ResponseStatus
164
+ code: 200
165
+ message: OK
166
+ headers:
167
+ x-ua-compatible:
168
+ - IE=Edge
169
+ etag:
170
+ - "\"22f9473f2fe170139198f5c1f2d50acf\""
171
+ connection:
172
+ - close
173
+ content-type:
174
+ - application/xml; charset=utf-8
175
+ x-runtime:
176
+ - "65"
177
+ date:
178
+ - Thu, 14 Oct 2010 06:17:37 GMT
179
+ server:
180
+ - nginx/0.7.65
181
+ content-length:
182
+ - "1000"
183
+ set-cookie:
184
+ - _recurly_session=67a117225810de87462450848b5d4ca2; domain=.recurly.com; path=/; Secure; HttpOnly
185
+ cache-control:
186
+ - private, max-age=0, must-revalidate
187
+ body: |
188
+ <?xml version="1.0" encoding="UTF-8"?>
189
+ <transactions type="collection">
190
+ <current_page type="integer">1</current_page>
191
+ <per_page type="integer">50</per_page>
192
+ <total_entries type="integer">1</total_entries>
193
+ <transaction type="Payment">
194
+ <id>0f76238ba3fa4b7b81c86d87808a09b3</id>
195
+ <account_code>transaction-list-empty-1286674805</account_code>
196
+ <action>authorization</action>
197
+ <date type="datetime">2010-10-13T23:17:37-07:00</date>
198
+ <amount_in_cents type="integer">100</amount_in_cents>
199
+ <status>void</status>
200
+ <message>Test Gateway: Successful test transaction</message>
201
+ <reference></reference>
202
+ <cvv_result code="M">Match</cvv_result>
203
+ <avs_result code="D">Street address and postal code match.</avs_result>
204
+ <avs_result_street></avs_result_street>
205
+ <avs_result_postal></avs_result_postal>
206
+ <test type="boolean">true</test>
207
+ <voidable type="boolean">false</voidable>
208
+ <refundable type="boolean">false</refundable>
209
+ </transaction>
210
+ </transactions>
211
+
212
+ http_version: "1.1"