dnsimple 3.0.0.pre.beta2 → 3.0.0

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.
Files changed (62) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +13 -0
  3. data/.rubocop_dnsimple.yml +216 -0
  4. data/.rubocop_todo.yml +14 -0
  5. data/CHANGELOG.md +16 -1
  6. data/Gemfile +1 -0
  7. data/Rakefile +8 -3
  8. data/lib/dnsimple/client.rb +9 -12
  9. data/lib/dnsimple/client/clients.rb +36 -2
  10. data/lib/dnsimple/client/contacts.rb +6 -6
  11. data/lib/dnsimple/client/domains.rb +5 -5
  12. data/lib/dnsimple/client/identity.rb +2 -2
  13. data/lib/dnsimple/client/oauth.rb +2 -2
  14. data/lib/dnsimple/client/registrar.rb +1 -1
  15. data/lib/dnsimple/client/registrar_auto_renewal.rb +2 -2
  16. data/lib/dnsimple/client/registrar_delegation.rb +49 -0
  17. data/lib/dnsimple/client/registrar_whois_privacy.rb +1 -1
  18. data/lib/dnsimple/client/services.rb +68 -0
  19. data/lib/dnsimple/client/templates.rb +139 -0
  20. data/lib/dnsimple/client/tlds.rb +3 -3
  21. data/lib/dnsimple/client/webhooks.rb +4 -4
  22. data/lib/dnsimple/client/zones.rb +2 -2
  23. data/lib/dnsimple/client/zones_records.rb +1 -1
  24. data/lib/dnsimple/default.rb +2 -2
  25. data/lib/dnsimple/error.rb +14 -1
  26. data/lib/dnsimple/struct.rb +3 -1
  27. data/lib/dnsimple/struct/contact.rb +2 -2
  28. data/lib/dnsimple/struct/extended_attribute.rb +5 -1
  29. data/lib/dnsimple/struct/service.rb +64 -0
  30. data/lib/dnsimple/struct/template.rb +22 -0
  31. data/lib/dnsimple/struct/tld.rb +1 -1
  32. data/lib/dnsimple/version.rb +1 -1
  33. data/spec/dnsimple/client/client_service_spec.rb +6 -6
  34. data/spec/dnsimple/client/contacts_spec.rb +30 -30
  35. data/spec/dnsimple/client/domains_email_forwards_spec.rb +25 -25
  36. data/spec/dnsimple/client/domains_spec.rb +27 -27
  37. data/spec/dnsimple/client/identity_spec.rb +8 -8
  38. data/spec/dnsimple/client/oauth_spec.rb +9 -9
  39. data/spec/dnsimple/client/registrar_auto_renewal_spec.rb +13 -13
  40. data/spec/dnsimple/client/registrar_delegation_spec.rb +55 -0
  41. data/spec/dnsimple/client/registrar_spec.rb +29 -29
  42. data/spec/dnsimple/client/registrar_whois_privacy_spec.rb +16 -16
  43. data/spec/dnsimple/client/services_spec.rb +78 -0
  44. data/spec/dnsimple/client/templates_spec.rb +163 -0
  45. data/spec/dnsimple/client/tlds_spec.rb +22 -23
  46. data/spec/dnsimple/client/webhooks_spec.rb +22 -22
  47. data/spec/dnsimple/client/zones_records_spec.rb +40 -40
  48. data/spec/dnsimple/client/zones_spec.rb +12 -12
  49. data/spec/dnsimple/client_spec.rb +52 -44
  50. data/spec/dnsimple/extra_spec.rb +3 -3
  51. data/spec/fixtures.http/changeDomainDelegation/success.http +17 -0
  52. data/spec/fixtures.http/createTemplate/created.http +17 -0
  53. data/spec/fixtures.http/deleteTemplate/success.http +13 -0
  54. data/spec/fixtures.http/getDomainDelegation/success-empty.http +17 -0
  55. data/spec/fixtures.http/getDomainDelegation/success.http +17 -0
  56. data/spec/fixtures.http/getService/success.http +17 -0
  57. data/spec/fixtures.http/getTemplate/success.http +17 -0
  58. data/spec/fixtures.http/listServices/success.http +17 -0
  59. data/spec/fixtures.http/listTemplates/success.http +17 -0
  60. data/spec/fixtures.http/method-not-allowed.http +11 -0
  61. data/spec/fixtures.http/updateTemplate/success.http +17 -0
  62. metadata +41 -5
@@ -0,0 +1,17 @@
1
+ HTTP/1.1 201 Created
2
+ Server: nginx
3
+ Date: Thu, 24 Mar 2016 11:09:16 GMT
4
+ Content-Type: application/json; charset=utf-8
5
+ Transfer-Encoding: chunked
6
+ Connection: keep-alive
7
+ Status: 201 Created
8
+ X-RateLimit-Limit: 2400
9
+ X-RateLimit-Remaining: 2396
10
+ X-RateLimit-Reset: 1458821049
11
+ ETag: W/"c0be8a0056ccd8e0ee31a60c51256848"
12
+ Cache-Control: max-age=0, private, must-revalidate
13
+ X-Request-Id: c4ab6dd9-87d4-4244-8ec8-9187a511b89c
14
+ X-Runtime: 0.115316
15
+ Strict-Transport-Security: max-age=31536000
16
+
17
+ {"data":{"id":1,"account_id":1010,"name":"Beta","short_name":"beta","description":"A beta template.","created_at":"2016-03-24T11:09:16.345Z","updated_at":"2016-03-24T11:09:16.345Z"}}
@@ -0,0 +1,13 @@
1
+ HTTP/1.1 204 No Content
2
+ Server: nginx
3
+ Date: Thu, 24 Mar 2016 11:05:38 GMT
4
+ Connection: keep-alive
5
+ Status: 204 No Content
6
+ X-RateLimit-Limit: 2400
7
+ X-RateLimit-Remaining: 2397
8
+ X-RateLimit-Reset: 1458821049
9
+ Cache-Control: no-cache
10
+ X-Request-Id: 967713d5-a203-40ee-875c-1df07868b7eb
11
+ X-Runtime: 0.147576
12
+ Strict-Transport-Security: max-age=31536000
13
+
@@ -0,0 +1,17 @@
1
+ HTTP/1.1 200 OK
2
+ Server: nginx
3
+ Date: Thu, 24 Mar 2016 11:13:41 GMT
4
+ Content-Type: application/json; charset=utf-8
5
+ Transfer-Encoding: chunked
6
+ Connection: keep-alive
7
+ Status: 200 OK
8
+ X-RateLimit-Limit: 2400
9
+ X-RateLimit-Remaining: 2393
10
+ X-RateLimit-Reset: 1458821048
11
+ ETag: W/"e0234245cb00aa260ccfa99a9a0b235e"
12
+ Cache-Control: max-age=0, private, must-revalidate
13
+ X-Request-Id: c88385f9-c8f7-435a-9060-0b1a27488b2b
14
+ X-Runtime: 0.206440
15
+ Strict-Transport-Security: max-age=31536000
16
+
17
+ {"data":[]}
@@ -0,0 +1,17 @@
1
+ HTTP/1.1 200 OK
2
+ Server: nginx
3
+ Date: Thu, 24 Mar 2016 11:17:18 GMT
4
+ Content-Type: application/json; charset=utf-8
5
+ Transfer-Encoding: chunked
6
+ Connection: keep-alive
7
+ Status: 200 OK
8
+ X-RateLimit-Limit: 2400
9
+ X-RateLimit-Remaining: 2391
10
+ X-RateLimit-Reset: 1458821048
11
+ ETag: W/"cb540984f806b12ac437cc1f76092f90"
12
+ Cache-Control: max-age=0, private, must-revalidate
13
+ X-Request-Id: e53ac7b5-0d26-45bc-9226-09c2d34be293
14
+ X-Runtime: 0.192986
15
+ Strict-Transport-Security: max-age=31536000
16
+
17
+ {"data":["ns1.dnsimple.com","ns2.dnsimple.com","ns3.dnsimple.com","ns4.dnsimple.com"]}
@@ -0,0 +1,17 @@
1
+ HTTP/1.1 200 OK
2
+ Server: nginx
3
+ Date: Fri, 15 Apr 2016 14:50:13 GMT
4
+ Content-Type: application/json; charset=utf-8
5
+ Transfer-Encoding: chunked
6
+ Connection: keep-alive
7
+ Status: 200 OK
8
+ X-RateLimit-Limit: 2400
9
+ X-RateLimit-Remaining: 2394
10
+ X-RateLimit-Reset: 1460735221
11
+ ETag: W/"be453ad05df875577d40dbfbb479239a"
12
+ Cache-Control: max-age=0, private, must-revalidate
13
+ X-Request-Id: 741b849f-dba6-4d0b-a68c-f47fe1aa3a54
14
+ X-Runtime: 0.140632
15
+ Strict-Transport-Security: max-age=31536000
16
+
17
+ {"data":{"id":1,"name":"Service 1","short_name":"service1","description":"First service example.","setup_description":null,"requires_setup":false,"default_subdomain":null,"created_at":"2014-02-14T19:15:19.953Z","updated_at":"2016-03-04T09:23:27.655Z","settings":[]}}
@@ -0,0 +1,17 @@
1
+ HTTP/1.1 200 OK
2
+ Server: nginx
3
+ Date: Tue, 22 Mar 2016 11:14:57 GMT
4
+ Content-Type: application/json; charset=utf-8
5
+ Transfer-Encoding: chunked
6
+ Connection: keep-alive
7
+ Status: 200 OK
8
+ X-RateLimit-Limit: 2400
9
+ X-RateLimit-Remaining: 2394
10
+ X-RateLimit-Reset: 1458648490
11
+ ETag: W/"6a2c0c6789d853473765a5fc5662da2e"
12
+ Cache-Control: max-age=0, private, must-revalidate
13
+ X-Request-Id: 3401ffd6-730f-42c0-856c-3b270ca4b35f
14
+ X-Runtime: 0.938420
15
+ Strict-Transport-Security: max-age=31536000
16
+
17
+ {"data":{"id":1,"account_id":1010,"name":"Alpha","short_name":"alpha","description":"An alpha template.","created_at":"2016-03-22T11:08:58.262Z","updated_at":"2016-03-22T11:08:58.262Z"}}
@@ -0,0 +1,17 @@
1
+ HTTP/1.1 200 OK
2
+ Server: nginx
3
+ Date: Fri, 15 Apr 2016 14:57:44 GMT
4
+ Content-Type: application/json; charset=utf-8
5
+ Transfer-Encoding: chunked
6
+ Connection: keep-alive
7
+ Status: 200 OK
8
+ X-RateLimit-Limit: 2400
9
+ X-RateLimit-Remaining: 2393
10
+ X-RateLimit-Reset: 1460735221
11
+ ETag: W/"0eae35f5ed682b90fe33b6e5809b2194"
12
+ Cache-Control: max-age=0, private, must-revalidate
13
+ X-Request-Id: e84f8594-f7a8-47d3-81f7-83f422107084
14
+ X-Runtime: 0.200949
15
+ Strict-Transport-Security: max-age=31536000
16
+
17
+ {"data":[{"id":1,"name":"Service 1","short_name":"service1","description":"First service example.","setup_description":null,"requires_setup":false,"default_subdomain":null,"created_at":"2014-02-14T19:15:19.953Z","updated_at":"2016-03-04T09:23:27.655Z","settings":[]},{"id":2,"name":"Service 2","short_name":"service2","description":"Second service example.","setup_description":null,"requires_setup":true,"default_subdomain":null,"created_at":"2014-02-14T19:15:19.953Z","updated_at":"2016-03-04T09:23:27.655Z","settings":[{"name":"username","label":"Service 2 Account Username","append":".service2.com","description":"Your Service2 username is used to connect services to your account.","example":"username","password":false}]}],"pagination":{"current_page":1,"per_page":30,"total_entries":2,"total_pages":1}}
@@ -0,0 +1,17 @@
1
+ HTTP/1.1 200 OK
2
+ Server: nginx
3
+ Date: Tue, 22 Mar 2016 11:11:50 GMT
4
+ Content-Type: application/json; charset=utf-8
5
+ Transfer-Encoding: chunked
6
+ Connection: keep-alive
7
+ Status: 200 OK
8
+ X-RateLimit-Limit: 2400
9
+ X-RateLimit-Remaining: 2396
10
+ X-RateLimit-Reset: 1458648490
11
+ ETag: W/"2d1c99cff82eace0e995d901b465bbde"
12
+ Cache-Control: max-age=0, private, must-revalidate
13
+ X-Request-Id: 774e871f-8bda-40d7-bed9-bd907e872987
14
+ X-Runtime: 0.193956
15
+ Strict-Transport-Security: max-age=31536000
16
+
17
+ {"data":[{"id":1,"account_id":1010,"name":"Alpha","short_name":"alpha","description":"An alpha template.","created_at":"2016-03-22T11:08:58.262Z","updated_at":"2016-03-22T11:08:58.262Z"},{"id":2,"account_id":1010,"name":"Beta","short_name":"beta","description":"A beta template.","created_at":"2016-03-22T11:11:26.342Z","updated_at":"2016-03-22T11:11:26.342Z"}],"pagination":{"current_page":1,"per_page":30,"total_entries":2,"total_pages":1}}
@@ -0,0 +1,11 @@
1
+ HTTP/1.1 405 Method Not Allowed
2
+ Server: nginx
3
+ Date: Fri, 15 Apr 2016 14:15:04 GMT
4
+ Transfer-Encoding: chunked
5
+ Connection: keep-alive
6
+ Status: 405 Method Not Allowed
7
+ Allow: DELETE, GET, HEAD, PATCH, POST
8
+ Cache-Control: no-cache
9
+ X-Request-Id: 64c0a5e1-4cbb-4287-98a7-93085a77ac55
10
+ X-Runtime: 0.050104
11
+
@@ -0,0 +1,17 @@
1
+ HTTP/1.1 200 OK
2
+ Server: nginx
3
+ Date: Thu, 24 Mar 2016 11:04:55 GMT
4
+ Content-Type: application/json; charset=utf-8
5
+ Transfer-Encoding: chunked
6
+ Connection: keep-alive
7
+ Status: 200 OK
8
+ X-RateLimit-Limit: 2400
9
+ X-RateLimit-Remaining: 2398
10
+ X-RateLimit-Reset: 1458821048
11
+ ETag: W/"6a2c0c6789d853473765a5fc5662da2e"
12
+ Cache-Control: max-age=0, private, must-revalidate
13
+ X-Request-Id: 3a7993e7-8b1e-47ce-a7a8-cc86b02904de
14
+ X-Runtime: 0.324954
15
+ Strict-Transport-Security: max-age=31536000
16
+
17
+ {"data":{"id":1,"account_id":1010,"name":"Alpha","short_name":"alpha","description":"An alpha template.","created_at":"2016-03-22T11:08:58.262Z","updated_at":"2016-03-22T11:08:58.262Z"}}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dnsimple
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0.pre.beta2
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Anthony Eden
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-03-16 00:00:00.000000000 Z
12
+ date: 2016-04-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: httparty
@@ -92,6 +92,9 @@ extra_rdoc_files:
92
92
  files:
93
93
  - ".gitignore"
94
94
  - ".rspec"
95
+ - ".rubocop.yml"
96
+ - ".rubocop_dnsimple.yml"
97
+ - ".rubocop_todo.yml"
95
98
  - ".ruby-gemset"
96
99
  - ".ruby-version"
97
100
  - ".travis.yml"
@@ -113,7 +116,10 @@ files:
113
116
  - lib/dnsimple/client/oauth.rb
114
117
  - lib/dnsimple/client/registrar.rb
115
118
  - lib/dnsimple/client/registrar_auto_renewal.rb
119
+ - lib/dnsimple/client/registrar_delegation.rb
116
120
  - lib/dnsimple/client/registrar_whois_privacy.rb
121
+ - lib/dnsimple/client/services.rb
122
+ - lib/dnsimple/client/templates.rb
117
123
  - lib/dnsimple/client/tlds.rb
118
124
  - lib/dnsimple/client/webhooks.rb
119
125
  - lib/dnsimple/client/zones.rb
@@ -131,6 +137,8 @@ files:
131
137
  - lib/dnsimple/struct/extended_attribute.rb
132
138
  - lib/dnsimple/struct/oauth_token.rb
133
139
  - lib/dnsimple/struct/record.rb
140
+ - lib/dnsimple/struct/service.rb
141
+ - lib/dnsimple/struct/template.rb
134
142
  - lib/dnsimple/struct/tld.rb
135
143
  - lib/dnsimple/struct/user.rb
136
144
  - lib/dnsimple/struct/webhook.rb
@@ -144,8 +152,11 @@ files:
144
152
  - spec/dnsimple/client/identity_spec.rb
145
153
  - spec/dnsimple/client/oauth_spec.rb
146
154
  - spec/dnsimple/client/registrar_auto_renewal_spec.rb
155
+ - spec/dnsimple/client/registrar_delegation_spec.rb
147
156
  - spec/dnsimple/client/registrar_spec.rb
148
157
  - spec/dnsimple/client/registrar_whois_privacy_spec.rb
158
+ - spec/dnsimple/client/services_spec.rb
159
+ - spec/dnsimple/client/templates_spec.rb
149
160
  - spec/dnsimple/client/tlds_spec.rb
150
161
  - spec/dnsimple/client/webhooks_spec.rb
151
162
  - spec/dnsimple/client/zones_records_spec.rb
@@ -153,15 +164,18 @@ files:
153
164
  - spec/dnsimple/client_spec.rb
154
165
  - spec/dnsimple/extra_spec.rb
155
166
  - spec/fixtures.http/badgateway.http
167
+ - spec/fixtures.http/changeDomainDelegation/success.http
156
168
  - spec/fixtures.http/checkDomain/success.http
157
169
  - spec/fixtures.http/createContact/created.http
158
170
  - spec/fixtures.http/createDomain/created.http
159
171
  - spec/fixtures.http/createEmailForward/created.http
172
+ - spec/fixtures.http/createTemplate/created.http
160
173
  - spec/fixtures.http/createWebhook/created.http
161
174
  - spec/fixtures.http/createZoneRecord/created.http
162
175
  - spec/fixtures.http/deleteContact/success.http
163
176
  - spec/fixtures.http/deleteDomain/success.http
164
177
  - spec/fixtures.http/deleteEmailForward/success.http
178
+ - spec/fixtures.http/deleteTemplate/success.http
165
179
  - spec/fixtures.http/deleteWebhook/success.http
166
180
  - spec/fixtures.http/deleteZoneRecord/success.http
167
181
  - spec/fixtures.http/disableAutoRenewal/success.http
@@ -171,7 +185,11 @@ files:
171
185
  - spec/fixtures.http/enableWhoisPrivacy/success.http
172
186
  - spec/fixtures.http/getContact/success.http
173
187
  - spec/fixtures.http/getDomain/success.http
188
+ - spec/fixtures.http/getDomainDelegation/success-empty.http
189
+ - spec/fixtures.http/getDomainDelegation/success.http
174
190
  - spec/fixtures.http/getEmailForward/success.http
191
+ - spec/fixtures.http/getService/success.http
192
+ - spec/fixtures.http/getTemplate/success.http
175
193
  - spec/fixtures.http/getTld/success.http
176
194
  - spec/fixtures.http/getTldExtendedAttributes/success-noattributes.http
177
195
  - spec/fixtures.http/getTldExtendedAttributes/success.http
@@ -182,10 +200,13 @@ files:
182
200
  - spec/fixtures.http/listContacts/success.http
183
201
  - spec/fixtures.http/listDomains/success.http
184
202
  - spec/fixtures.http/listEmailForwards/success.http
203
+ - spec/fixtures.http/listServices/success.http
204
+ - spec/fixtures.http/listTemplates/success.http
185
205
  - spec/fixtures.http/listTlds/success.http
186
206
  - spec/fixtures.http/listWebhooks/success.http
187
207
  - spec/fixtures.http/listZoneRecords/success.http
188
208
  - spec/fixtures.http/listZones/success.http
209
+ - spec/fixtures.http/method-not-allowed.http
189
210
  - spec/fixtures.http/notfound-contact.http
190
211
  - spec/fixtures.http/notfound-domain.http
191
212
  - spec/fixtures.http/notfound-emailforward.http
@@ -206,6 +227,7 @@ files:
206
227
  - spec/fixtures.http/transferDomain/success.http
207
228
  - spec/fixtures.http/transferDomainOut/success.http
208
229
  - spec/fixtures.http/updateContact/success.http
230
+ - spec/fixtures.http/updateTemplate/success.http
209
231
  - spec/fixtures.http/updateZoneRecord/success.http
210
232
  - spec/fixtures.http/whoami/success.http
211
233
  - spec/fixtures.http/whoami/success_account.http
@@ -227,12 +249,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
227
249
  version: '2.0'
228
250
  required_rubygems_version: !ruby/object:Gem::Requirement
229
251
  requirements:
230
- - - ">"
252
+ - - ">="
231
253
  - !ruby/object:Gem::Version
232
- version: 1.3.1
254
+ version: '0'
233
255
  requirements: []
234
256
  rubyforge_project:
235
- rubygems_version: 2.5.1
257
+ rubygems_version: 2.6.3
236
258
  signing_key:
237
259
  specification_version: 4
238
260
  summary: The DNSimple API client for Ruby
@@ -244,8 +266,11 @@ test_files:
244
266
  - spec/dnsimple/client/identity_spec.rb
245
267
  - spec/dnsimple/client/oauth_spec.rb
246
268
  - spec/dnsimple/client/registrar_auto_renewal_spec.rb
269
+ - spec/dnsimple/client/registrar_delegation_spec.rb
247
270
  - spec/dnsimple/client/registrar_spec.rb
248
271
  - spec/dnsimple/client/registrar_whois_privacy_spec.rb
272
+ - spec/dnsimple/client/services_spec.rb
273
+ - spec/dnsimple/client/templates_spec.rb
249
274
  - spec/dnsimple/client/tlds_spec.rb
250
275
  - spec/dnsimple/client/webhooks_spec.rb
251
276
  - spec/dnsimple/client/zones_records_spec.rb
@@ -253,15 +278,18 @@ test_files:
253
278
  - spec/dnsimple/client_spec.rb
254
279
  - spec/dnsimple/extra_spec.rb
255
280
  - spec/fixtures.http/badgateway.http
281
+ - spec/fixtures.http/changeDomainDelegation/success.http
256
282
  - spec/fixtures.http/checkDomain/success.http
257
283
  - spec/fixtures.http/createContact/created.http
258
284
  - spec/fixtures.http/createDomain/created.http
259
285
  - spec/fixtures.http/createEmailForward/created.http
286
+ - spec/fixtures.http/createTemplate/created.http
260
287
  - spec/fixtures.http/createWebhook/created.http
261
288
  - spec/fixtures.http/createZoneRecord/created.http
262
289
  - spec/fixtures.http/deleteContact/success.http
263
290
  - spec/fixtures.http/deleteDomain/success.http
264
291
  - spec/fixtures.http/deleteEmailForward/success.http
292
+ - spec/fixtures.http/deleteTemplate/success.http
265
293
  - spec/fixtures.http/deleteWebhook/success.http
266
294
  - spec/fixtures.http/deleteZoneRecord/success.http
267
295
  - spec/fixtures.http/disableAutoRenewal/success.http
@@ -271,7 +299,11 @@ test_files:
271
299
  - spec/fixtures.http/enableWhoisPrivacy/success.http
272
300
  - spec/fixtures.http/getContact/success.http
273
301
  - spec/fixtures.http/getDomain/success.http
302
+ - spec/fixtures.http/getDomainDelegation/success-empty.http
303
+ - spec/fixtures.http/getDomainDelegation/success.http
274
304
  - spec/fixtures.http/getEmailForward/success.http
305
+ - spec/fixtures.http/getService/success.http
306
+ - spec/fixtures.http/getTemplate/success.http
275
307
  - spec/fixtures.http/getTld/success.http
276
308
  - spec/fixtures.http/getTldExtendedAttributes/success-noattributes.http
277
309
  - spec/fixtures.http/getTldExtendedAttributes/success.http
@@ -282,10 +314,13 @@ test_files:
282
314
  - spec/fixtures.http/listContacts/success.http
283
315
  - spec/fixtures.http/listDomains/success.http
284
316
  - spec/fixtures.http/listEmailForwards/success.http
317
+ - spec/fixtures.http/listServices/success.http
318
+ - spec/fixtures.http/listTemplates/success.http
285
319
  - spec/fixtures.http/listTlds/success.http
286
320
  - spec/fixtures.http/listWebhooks/success.http
287
321
  - spec/fixtures.http/listZoneRecords/success.http
288
322
  - spec/fixtures.http/listZones/success.http
323
+ - spec/fixtures.http/method-not-allowed.http
289
324
  - spec/fixtures.http/notfound-contact.http
290
325
  - spec/fixtures.http/notfound-domain.http
291
326
  - spec/fixtures.http/notfound-emailforward.http
@@ -306,6 +341,7 @@ test_files:
306
341
  - spec/fixtures.http/transferDomain/success.http
307
342
  - spec/fixtures.http/transferDomainOut/success.http
308
343
  - spec/fixtures.http/updateContact/success.http
344
+ - spec/fixtures.http/updateTemplate/success.http
309
345
  - spec/fixtures.http/updateZoneRecord/success.http
310
346
  - spec/fixtures.http/whoami/success.http
311
347
  - spec/fixtures.http/whoami/success_account.http