xeroizer-3-pre-beta 3.0.0.pre.beta

Sign up to get free protection for your applications and to get access to all the features.
Files changed (429) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +41 -0
  3. data/README.md +34 -0
  4. data/lib/class_level_inheritable_attributes.rb +28 -0
  5. data/lib/xeroizer.rb +117 -0
  6. data/lib/xeroizer/application_http_proxy.rb +30 -0
  7. data/lib/xeroizer/ca-certificates.crt +2694 -0
  8. data/lib/xeroizer/configuration.rb +19 -0
  9. data/lib/xeroizer/connection.rb +31 -0
  10. data/lib/xeroizer/exceptions.rb +161 -0
  11. data/lib/xeroizer/generic_application.rb +90 -0
  12. data/lib/xeroizer/http.rb +160 -0
  13. data/lib/xeroizer/http_encoding_helper.rb +49 -0
  14. data/lib/xeroizer/http_response.rb +154 -0
  15. data/lib/xeroizer/logging.rb +8 -0
  16. data/lib/xeroizer/models/account.rb +72 -0
  17. data/lib/xeroizer/models/accounts_payable.rb +13 -0
  18. data/lib/xeroizer/models/accounts_receivable.rb +13 -0
  19. data/lib/xeroizer/models/address.rb +41 -0
  20. data/lib/xeroizer/models/allocation.rb +13 -0
  21. data/lib/xeroizer/models/attachment.rb +95 -0
  22. data/lib/xeroizer/models/balances.rb +17 -0
  23. data/lib/xeroizer/models/bank_account.rb +13 -0
  24. data/lib/xeroizer/models/bank_transaction.rb +95 -0
  25. data/lib/xeroizer/models/bank_transfer.rb +28 -0
  26. data/lib/xeroizer/models/batch_payment.rb +24 -0
  27. data/lib/xeroizer/models/batch_payments.rb +14 -0
  28. data/lib/xeroizer/models/bills.rb +13 -0
  29. data/lib/xeroizer/models/branding_theme.rb +62 -0
  30. data/lib/xeroizer/models/contact.rb +77 -0
  31. data/lib/xeroizer/models/contact_group.rb +64 -0
  32. data/lib/xeroizer/models/contact_person.rb +20 -0
  33. data/lib/xeroizer/models/contact_purchases_tracking_category.rb +19 -0
  34. data/lib/xeroizer/models/contact_sales_tracking_category.rb +19 -0
  35. data/lib/xeroizer/models/credit_note.rb +164 -0
  36. data/lib/xeroizer/models/currency.rb +30 -0
  37. data/lib/xeroizer/models/employee.rb +73 -0
  38. data/lib/xeroizer/models/expense_claim.rb +29 -0
  39. data/lib/xeroizer/models/external_link.rb +16 -0
  40. data/lib/xeroizer/models/from_bank_account.rb +13 -0
  41. data/lib/xeroizer/models/invoice.rb +229 -0
  42. data/lib/xeroizer/models/invoice_reminder.rb +19 -0
  43. data/lib/xeroizer/models/item.rb +39 -0
  44. data/lib/xeroizer/models/item_purchase_details.rb +20 -0
  45. data/lib/xeroizer/models/item_sales_details.rb +19 -0
  46. data/lib/xeroizer/models/journal.rb +27 -0
  47. data/lib/xeroizer/models/journal_line.rb +29 -0
  48. data/lib/xeroizer/models/journal_line_tracking_category.rb +21 -0
  49. data/lib/xeroizer/models/line_amount_type.rb +11 -0
  50. data/lib/xeroizer/models/line_item.rb +64 -0
  51. data/lib/xeroizer/models/line_item_sum.rb +21 -0
  52. data/lib/xeroizer/models/manual_journal.rb +49 -0
  53. data/lib/xeroizer/models/manual_journal_line.rb +28 -0
  54. data/lib/xeroizer/models/online_invoice.rb +37 -0
  55. data/lib/xeroizer/models/option.rb +18 -0
  56. data/lib/xeroizer/models/organisation.rb +85 -0
  57. data/lib/xeroizer/models/overpayment.rb +40 -0
  58. data/lib/xeroizer/models/payment.rb +48 -0
  59. data/lib/xeroizer/models/payment_service.rb +22 -0
  60. data/lib/xeroizer/models/payment_terms.rb +16 -0
  61. data/lib/xeroizer/models/payroll/address.rb +53 -0
  62. data/lib/xeroizer/models/payroll/bank_account.rb +35 -0
  63. data/lib/xeroizer/models/payroll/benefit_line.rb +26 -0
  64. data/lib/xeroizer/models/payroll/benefit_type.rb +45 -0
  65. data/lib/xeroizer/models/payroll/deduction_line.rb +32 -0
  66. data/lib/xeroizer/models/payroll/deduction_type.rb +49 -0
  67. data/lib/xeroizer/models/payroll/earnings_line.rb +39 -0
  68. data/lib/xeroizer/models/payroll/earnings_type.rb +53 -0
  69. data/lib/xeroizer/models/payroll/employee.rb +67 -0
  70. data/lib/xeroizer/models/payroll/leave_application.rb +27 -0
  71. data/lib/xeroizer/models/payroll/leave_line.rb +30 -0
  72. data/lib/xeroizer/models/payroll/leave_period.rb +15 -0
  73. data/lib/xeroizer/models/payroll/pay_items.rb +22 -0
  74. data/lib/xeroizer/models/payroll/pay_run.rb +33 -0
  75. data/lib/xeroizer/models/payroll/pay_schedule.rb +40 -0
  76. data/lib/xeroizer/models/payroll/pay_template.rb +24 -0
  77. data/lib/xeroizer/models/payroll/payment_method.rb +24 -0
  78. data/lib/xeroizer/models/payroll/paystub.rb +44 -0
  79. data/lib/xeroizer/models/payroll/reimbursement_line.rb +21 -0
  80. data/lib/xeroizer/models/payroll/reimbursement_type.rb +22 -0
  81. data/lib/xeroizer/models/payroll/salary_and_wage.rb +29 -0
  82. data/lib/xeroizer/models/payroll/super_line.rb +40 -0
  83. data/lib/xeroizer/models/payroll/tax_declaration.rb +50 -0
  84. data/lib/xeroizer/models/payroll/time_off_line.rb +20 -0
  85. data/lib/xeroizer/models/payroll/time_off_type.rb +32 -0
  86. data/lib/xeroizer/models/payroll/work_location.rb +25 -0
  87. data/lib/xeroizer/models/phone.rb +26 -0
  88. data/lib/xeroizer/models/prepayment.rb +41 -0
  89. data/lib/xeroizer/models/purchase_order.rb +49 -0
  90. data/lib/xeroizer/models/receipt.rb +39 -0
  91. data/lib/xeroizer/models/repeating_invoice.rb +80 -0
  92. data/lib/xeroizer/models/sales.rb +13 -0
  93. data/lib/xeroizer/models/schedule.rb +34 -0
  94. data/lib/xeroizer/models/tax_component.rb +13 -0
  95. data/lib/xeroizer/models/tax_rate.rb +36 -0
  96. data/lib/xeroizer/models/to_bank_account.rb +13 -0
  97. data/lib/xeroizer/models/tracking_category.rb +23 -0
  98. data/lib/xeroizer/models/tracking_category_child.rb +20 -0
  99. data/lib/xeroizer/models/user.rb +26 -0
  100. data/lib/xeroizer/oauth.rb +162 -0
  101. data/lib/xeroizer/oauth2.rb +66 -0
  102. data/lib/xeroizer/oauth2_application.rb +42 -0
  103. data/lib/xeroizer/partner_application.rb +52 -0
  104. data/lib/xeroizer/payroll_application.rb +33 -0
  105. data/lib/xeroizer/private_application.rb +26 -0
  106. data/lib/xeroizer/public_application.rb +22 -0
  107. data/lib/xeroizer/record/application_helper.rb +32 -0
  108. data/lib/xeroizer/record/base.rb +203 -0
  109. data/lib/xeroizer/record/base_model.rb +253 -0
  110. data/lib/xeroizer/record/base_model_http_proxy.rb +141 -0
  111. data/lib/xeroizer/record/model_definition_helper.rb +101 -0
  112. data/lib/xeroizer/record/payroll_base.rb +29 -0
  113. data/lib/xeroizer/record/payroll_base_model.rb +29 -0
  114. data/lib/xeroizer/record/record_association_helper.rb +141 -0
  115. data/lib/xeroizer/record/validation_helper.rb +75 -0
  116. data/lib/xeroizer/record/validators/associated_validator.rb +34 -0
  117. data/lib/xeroizer/record/validators/block_validator.rb +22 -0
  118. data/lib/xeroizer/record/validators/inclusion_of_validator.rb +22 -0
  119. data/lib/xeroizer/record/validators/length_of_validator.rb +23 -0
  120. data/lib/xeroizer/record/validators/presence_of_validator.rb +19 -0
  121. data/lib/xeroizer/record/validators/validator.rb +33 -0
  122. data/lib/xeroizer/record/xml_helper.rb +144 -0
  123. data/lib/xeroizer/report/aged_receivables_by_contact.rb +42 -0
  124. data/lib/xeroizer/report/base.rb +42 -0
  125. data/lib/xeroizer/report/cell.rb +32 -0
  126. data/lib/xeroizer/report/cell_xml_helper.rb +74 -0
  127. data/lib/xeroizer/report/factory.rb +54 -0
  128. data/lib/xeroizer/report/row/header.rb +12 -0
  129. data/lib/xeroizer/report/row/row.rb +48 -0
  130. data/lib/xeroizer/report/row/section.rb +10 -0
  131. data/lib/xeroizer/report/row/summary.rb +9 -0
  132. data/lib/xeroizer/report/row/xml_helper.rb +77 -0
  133. data/lib/xeroizer/report/xml_helper.rb +58 -0
  134. data/lib/xeroizer/response.rb +74 -0
  135. data/lib/xeroizer/version.rb +3 -0
  136. data/test/acceptance/about_creating_bank_transactions_test.rb +170 -0
  137. data/test/acceptance/about_creating_prepayment_test.rb +41 -0
  138. data/test/acceptance/about_fetching_bank_transactions_test.rb +53 -0
  139. data/test/acceptance/about_online_invoice_test.rb +25 -0
  140. data/test/acceptance/acceptance_test.rb +77 -0
  141. data/test/acceptance/bank_transaction_reference_data.rb +32 -0
  142. data/test/acceptance/bank_transfer_test.rb +21 -0
  143. data/test/acceptance/bulk_operations_test.rb +50 -0
  144. data/test/acceptance/connections_test.rb +11 -0
  145. data/test/stub_responses/accounts.xml +589 -0
  146. data/test/stub_responses/api_exception.xml +153 -0
  147. data/test/stub_responses/bad_request.json +6 -0
  148. data/test/stub_responses/bogus_oauth_error +1 -0
  149. data/test/stub_responses/branding_themes.xml +20 -0
  150. data/test/stub_responses/connections.json +16 -0
  151. data/test/stub_responses/contact.xml +54 -0
  152. data/test/stub_responses/contact_with_details.xml +79 -0
  153. data/test/stub_responses/contacts.xml +0 -0
  154. data/test/stub_responses/create_credit_note.xml +104 -0
  155. data/test/stub_responses/create_invoice.xml +64 -0
  156. data/test/stub_responses/credit_note.xml +75 -0
  157. data/test/stub_responses/credit_note_not_found_error.xml +1 -0
  158. data/test/stub_responses/credit_notes.xml +169 -0
  159. data/test/stub_responses/currencies.xml +12 -0
  160. data/test/stub_responses/employees.xml +29 -0
  161. data/test/stub_responses/expired_oauth2_token.json +6 -0
  162. data/test/stub_responses/generic_response_error.json +6 -0
  163. data/test/stub_responses/invalid_api_key_error.xml +1 -0
  164. data/test/stub_responses/invalid_consumer_key +1 -0
  165. data/test/stub_responses/invalid_oauth2_request_token.json +6 -0
  166. data/test/stub_responses/invalid_request_token +1 -0
  167. data/test/stub_responses/invalid_tenant_header.json +6 -0
  168. data/test/stub_responses/invoice.xml +84 -0
  169. data/test/stub_responses/invoice_not_found_error.xml +1 -0
  170. data/test/stub_responses/invoices.xml +1899 -0
  171. data/test/stub_responses/items.xml +112 -0
  172. data/test/stub_responses/manual_journal.xml +45 -0
  173. data/test/stub_responses/manual_journals.xml +40 -0
  174. data/test/stub_responses/nonce_used +1 -0
  175. data/test/stub_responses/object_not_found.json +6 -0
  176. data/test/stub_responses/organisation.xml +55 -0
  177. data/test/stub_responses/organisations.xml +35 -0
  178. data/test/stub_responses/payment_service.xml +15 -0
  179. data/test/stub_responses/payments.xml +1121 -0
  180. data/test/stub_responses/prepayments.xml +27 -0
  181. data/test/stub_responses/rate_limit_exceeded +1 -0
  182. data/test/stub_responses/records/contact-043892a1-aef1-4c18-88d8-b8ccb6d31466.xml +38 -0
  183. data/test/stub_responses/records/contact-09664078-efe2-4a88-89a5-67eac9b0047b.xml +40 -0
  184. data/test/stub_responses/records/contact-0a4cf37b-a1a8-4753-9ee2-f9207f63a8ff.xml +48 -0
  185. data/test/stub_responses/records/contact-0e74f929-11b9-4255-a035-1fdfe573e676.xml +40 -0
  186. data/test/stub_responses/records/contact-0f471ca5-15c9-405e-a1b9-7cc35194b673.xml +38 -0
  187. data/test/stub_responses/records/contact-13cd4c47-baa6-4f07-93f6-6442310df4bf.xml +47 -0
  188. data/test/stub_responses/records/contact-158a2667-82ee-43bf-8f33-a6cc9524092d.xml +38 -0
  189. data/test/stub_responses/records/contact-17465072-6fa3-40bf-bc42-97765d9e1bea.xml +38 -0
  190. data/test/stub_responses/records/contact-1975b0ed-b7ba-4c61-bae8-2aa6d78b0dee.xml +39 -0
  191. data/test/stub_responses/records/contact-1b2be6e9-8d58-4da9-aaf8-4fe5471b653c.xml +53 -0
  192. data/test/stub_responses/records/contact-1c40da58-fe1d-4e97-b729-b2abdae94d9e.xml +38 -0
  193. data/test/stub_responses/records/contact-258176a5-c622-4394-9c94-6f88c3ea12e5.xml +40 -0
  194. data/test/stub_responses/records/contact-299dd3a0-a417-4a37-8a04-2f55e91963e5.xml +40 -0
  195. data/test/stub_responses/records/contact-2be39278-5154-4ed1-8eb0-676f25acfc66.xml +40 -0
  196. data/test/stub_responses/records/contact-2e58cff6-488c-4a32-884b-baf848010229.xml +40 -0
  197. data/test/stub_responses/records/contact-2faccd41-935e-40aa-b74e-e2fc28ac34c3.xml +38 -0
  198. data/test/stub_responses/records/contact-31af01e7-2ca7-45b9-a500-b02db996568e.xml +38 -0
  199. data/test/stub_responses/records/contact-344f1113-a25b-4344-b82e-bedeacc17c8e.xml +40 -0
  200. data/test/stub_responses/records/contact-3e776c4b-ea9e-4bb1-96be-6b0c7a71a37f.xml +39 -0
  201. data/test/stub_responses/records/contact-3fc1fc6c-e5ff-4e40-b6f3-7eb535637d87.xml +38 -0
  202. data/test/stub_responses/records/contact-416ab20c-5357-4beb-a740-e8d175d71efb.xml +38 -0
  203. data/test/stub_responses/records/contact-41a42865-f15a-4fa1-b643-47877608f557.xml +54 -0
  204. data/test/stub_responses/records/contact-42771b60-19a7-4692-af81-dd9f9b9362d4.xml +43 -0
  205. data/test/stub_responses/records/contact-451ceb28-9610-44c9-8f35-3225482f2413.xml +40 -0
  206. data/test/stub_responses/records/contact-4ab343ad-1ebb-4afe-9d48-1814a93c2081.xml +38 -0
  207. data/test/stub_responses/records/contact-4bb77692-42d4-4565-85a0-8849eb85e039.xml +39 -0
  208. data/test/stub_responses/records/contact-4dec292f-3ab7-46a8-83e4-5fb5eac42c7f.xml +40 -0
  209. data/test/stub_responses/records/contact-4e2f192e-8397-4d4d-97ca-a4fc5ac531bf.xml +38 -0
  210. data/test/stub_responses/records/contact-5188c17c-7786-4436-ad6e-9da2997386d0.xml +40 -0
  211. data/test/stub_responses/records/contact-52442753-b1c4-40b7-9b79-c33997de5837.xml +40 -0
  212. data/test/stub_responses/records/contact-565acaa9-e7f3-4fbf-80c3-16b081ddae10.xml +38 -0
  213. data/test/stub_responses/records/contact-571a2414-81ff-4f8f-8498-d91d83793131.xml +44 -0
  214. data/test/stub_responses/records/contact-58697449-85ef-46ae-83fc-6a9446f037fb.xml +40 -0
  215. data/test/stub_responses/records/contact-58bf2ae3-5144-4628-8de2-e165ac2bcdc6.xml +40 -0
  216. data/test/stub_responses/records/contact-5d41dafd-eb7e-42c1-bd5a-ba3be1da0960.xml +38 -0
  217. data/test/stub_responses/records/contact-5f005a09-5ce4-4fb4-8096-e69c18be636e.xml +38 -0
  218. data/test/stub_responses/records/contact-60d578d9-3e10-4aef-b5dc-9d9fd60a3633.xml +47 -0
  219. data/test/stub_responses/records/contact-62392126-dba4-4a75-b907-5875ebf75259.xml +40 -0
  220. data/test/stub_responses/records/contact-642c7fb5-e8e5-48e1-a710-39a18c6c3217.xml +40 -0
  221. data/test/stub_responses/records/contact-64aebf9c-bb89-4b38-b99b-405bd1ece6fd.xml +40 -0
  222. data/test/stub_responses/records/contact-64eedbc9-1fa0-485a-837f-705f23188161.xml +38 -0
  223. data/test/stub_responses/records/contact-65e96c9f-1595-4653-9a8a-2a36d49223c2.xml +40 -0
  224. data/test/stub_responses/records/contact-67d26b93-ccb4-4890-9bf1-284b70ea755d.xml +38 -0
  225. data/test/stub_responses/records/contact-69d3e538-44b3-4e00-a5f6-7dddcb6e0656.xml +40 -0
  226. data/test/stub_responses/records/contact-6a8450bc-f81a-4bb0-a8f6-aa4afe9497c7.xml +40 -0
  227. data/test/stub_responses/records/contact-6c70e424-41d6-4b9b-af3e-b3a9f3589106.xml +40 -0
  228. data/test/stub_responses/records/contact-6de0b0cf-560c-4503-aab3-e1543c329deb.xml +54 -0
  229. data/test/stub_responses/records/contact-72dd6a02-396e-42a2-a4d6-cc3fa75dfece.xml +41 -0
  230. data/test/stub_responses/records/contact-755f1475-d255-43a8-bedc-5ea7fd26c71f.xml +51 -0
  231. data/test/stub_responses/records/contact-78a9d0a0-3d8c-4f84-af3e-f260bf4a9dc0.xml +38 -0
  232. data/test/stub_responses/records/contact-79aa39ca-22b0-42c2-9026-78757a29d665.xml +42 -0
  233. data/test/stub_responses/records/contact-804f4140-5978-48fe-ba20-b56e5b834b18.xml +40 -0
  234. data/test/stub_responses/records/contact-812d4f28-1681-4241-8e34-d15c5520ba35.xml +38 -0
  235. data/test/stub_responses/records/contact-860b99a9-0958-4c8d-a98f-bb1f092b16bb.xml +60 -0
  236. data/test/stub_responses/records/contact-87c8da45-97cc-46be-b170-398da0eacfb8.xml +40 -0
  237. data/test/stub_responses/records/contact-8a154a19-6c6c-404b-bbc9-6deae2d18251.xml +38 -0
  238. data/test/stub_responses/records/contact-8bb6931d-2865-44e9-9a23-ed1fb9c7a46c.xml +40 -0
  239. data/test/stub_responses/records/contact-936c9759-01da-4063-b472-424ab9f48212.xml +38 -0
  240. data/test/stub_responses/records/contact-9d12a994-9640-4b75-95cc-3de1e9d0ef09.xml +38 -0
  241. data/test/stub_responses/records/contact-9fe59245-1fbb-4157-93c3-dc97388f3746.xml +40 -0
  242. data/test/stub_responses/records/contact-a06a7225-6f8a-4522-8400-c534dd43a16e.xml +40 -0
  243. data/test/stub_responses/records/contact-a76a85fe-73a2-46fa-aba7-791f36103cdb.xml +40 -0
  244. data/test/stub_responses/records/contact-a93b5f40-0346-4d21-9181-431e129911c0.xml +40 -0
  245. data/test/stub_responses/records/contact-abf272dd-6b1d-4829-af88-c57bf55855e3.xml +38 -0
  246. data/test/stub_responses/records/contact-ad24c33b-256b-4157-ad56-cbcf0e8db7b1.xml +47 -0
  247. data/test/stub_responses/records/contact-b107129d-f4c9-438e-9573-64b778527f4a.xml +40 -0
  248. data/test/stub_responses/records/contact-b233288a-aa26-4b26-9fc7-779d797dd56f.xml +40 -0
  249. data/test/stub_responses/records/contact-b2b5333a-2546-4975-891f-d71a8a640d23.xml +38 -0
  250. data/test/stub_responses/records/contact-b4d149bf-1823-4bd2-96da-9032388c9686.xml +40 -0
  251. data/test/stub_responses/records/contact-b78d4fd1-4306-4d83-a0b9-61458d1c53a2.xml +40 -0
  252. data/test/stub_responses/records/contact-b7d108a8-d5f7-4f16-a7c9-26eaed98e8de.xml +40 -0
  253. data/test/stub_responses/records/contact-baeed0f3-7989-4874-99b3-59f23032cb73.xml +38 -0
  254. data/test/stub_responses/records/contact-bc51a3a1-b7f6-46ca-ac9e-19b87e6ca100.xml +40 -0
  255. data/test/stub_responses/records/contact-be9f3aab-52f5-4d9c-94b4-87f7d9e5ee8b.xml +38 -0
  256. data/test/stub_responses/records/contact-c135f994-01e4-427b-9e15-acfe8a477c16.xml +49 -0
  257. data/test/stub_responses/records/contact-c14edf75-15e4-4a9c-86e4-f52e2fe7cfa4.xml +40 -0
  258. data/test/stub_responses/records/contact-ca9b9abc-c2dc-4221-8101-31f464d314cc.xml +44 -0
  259. data/test/stub_responses/records/contact-cc4db604-9ed8-4eef-8a29-51b5b70496a0.xml +38 -0
  260. data/test/stub_responses/records/contact-cce9b044-be4a-43b3-9dc7-c027d8dd35b2.xml +38 -0
  261. data/test/stub_responses/records/contact-d0cd2c4f-18a0-4f7c-a32a-2db00f29d298.xml +43 -0
  262. data/test/stub_responses/records/contact-d6851dc2-9ed9-4515-bc0b-810b09c06a6a.xml +38 -0
  263. data/test/stub_responses/records/contact-d6a384fb-f46f-41a3-8ac7-b7bc9e0b5efa.xml +46 -0
  264. data/test/stub_responses/records/contact-d74e61cf-2ad0-4f0d-b9d1-6a808e3f70cf.xml +40 -0
  265. data/test/stub_responses/records/contact-d9ab0f61-3b56-4e2b-be39-f33c11bd99e3.xml +40 -0
  266. data/test/stub_responses/records/contact-dbb1f0b5-a71b-4458-8462-104acd0fec6b.xml +38 -0
  267. data/test/stub_responses/records/contact-dd981bd6-40dd-496d-a282-bf7d3391b8b9.xml +40 -0
  268. data/test/stub_responses/records/contact-e1826204-cc0a-42a5-a6d0-4b352d9d5953.xml +40 -0
  269. data/test/stub_responses/records/contact-e2d955db-f366-42dd-87f7-fbdb4da2306f.xml +40 -0
  270. data/test/stub_responses/records/contact-e32e2130-3d27-443a-8313-48fffa03cf53.xml +40 -0
  271. data/test/stub_responses/records/contact-e3a68332-d322-4816-8678-73a537c8cd33.xml +38 -0
  272. data/test/stub_responses/records/contact-e6ac76a3-ca32-4fa1-8ef9-6a4bf8b0ec2a.xml +40 -0
  273. data/test/stub_responses/records/contact-e6ca965d-7c48-480e-be39-e847307f474a.xml +38 -0
  274. data/test/stub_responses/records/contact-e77d1f20-2e8e-46ec-9a10-50335a216724.xml +40 -0
  275. data/test/stub_responses/records/contact-e8b98c13-a424-41d2-ba0e-7b7621411e7a.xml +38 -0
  276. data/test/stub_responses/records/contact-e8e9a2c2-3e7e-48ed-8528-c3d61b28f276.xml +39 -0
  277. data/test/stub_responses/records/contact-eb43fcc6-87ec-4a0a-b243-d718bee4e2cb.xml +38 -0
  278. data/test/stub_responses/records/contact-ef6f54c1-eb45-4956-b8cd-1be82ad665f2.xml +43 -0
  279. data/test/stub_responses/records/contact-efdb3600-f233-42e2-8f18-ce7e2a95e4b1.xml +38 -0
  280. data/test/stub_responses/records/contact-f7eca431-5c97-4d24-93fd-004bb8a6c644.xml +40 -0
  281. data/test/stub_responses/records/contact-fb078879-5d6d-474f-825f-61dc90689349.xml +38 -0
  282. data/test/stub_responses/records/contact-fc39b273-4aa2-4785-99ca-24672f6c0000.xml +38 -0
  283. data/test/stub_responses/records/contact-fc9ec3a6-a2fe-4300-a8cb-ca8a0b3662e0.xml +40 -0
  284. data/test/stub_responses/records/contact-fdf96102-7491-44b6-bf4d-7a77ff25f890.xml +40 -0
  285. data/test/stub_responses/records/contact-fe61ead1-8afc-4f0b-beda-066620227aad.xml +38 -0
  286. data/test/stub_responses/records/credit_note-371cd138-1e5c-4ec1-a8c6-a1c10e8bdab1.xml +73 -0
  287. data/test/stub_responses/records/credit_note-3bffc09b-79f2-490d-b91b-c59b700b43a4.xml +95 -0
  288. data/test/stub_responses/records/credit_note-43c678ee-f357-48e2-b192-b6e3634762f9.xml +94 -0
  289. data/test/stub_responses/records/credit_note-482c018b-d329-4e05-9b4f-7a4cfc695aa0.xml +77 -0
  290. data/test/stub_responses/records/credit_note-4f67130a-749a-4ee6-98b2-743adbc11245.xml +62 -0
  291. data/test/stub_responses/records/credit_note-50e98404-2fba-4031-af67-8ba4bb227c44.xml +77 -0
  292. data/test/stub_responses/records/credit_note-7df8949c-b71f-40c0-bbcf-39f2f450f286.xml +75 -0
  293. data/test/stub_responses/records/credit_note-b356e488-2678-4be4-ad4b-d294df2d48d6.xml +78 -0
  294. data/test/stub_responses/records/invoice-0032f627-3156-4d30-9b1c-4d3b994dc921.xml +84 -0
  295. data/test/stub_responses/records/invoice-00c9511b-24b9-4190-a90a-8abf2fe9f4a0.xml +76 -0
  296. data/test/stub_responses/records/invoice-024d7994-a26c-4c20-9894-13934840fc31.xml +74 -0
  297. data/test/stub_responses/records/invoice-0e64a623-c2a1-446a-93ed-eb897f118cbc.xml +97 -0
  298. data/test/stub_responses/records/invoice-15e88e57-2554-4496-a18e-eb3f5c622345.xml +75 -0
  299. data/test/stub_responses/records/invoice-166f0588-d0ba-458c-b28a-8edd4c8fc463.xml +75 -0
  300. data/test/stub_responses/records/invoice-1d1ba340-afa2-4f4c-8ff7-a147bda9a47b.xml +93 -0
  301. data/test/stub_responses/records/invoice-290ef4c4-baec-492b-b4dd-c102826470ae.xml +87 -0
  302. data/test/stub_responses/records/invoice-30a87092-31b5-4a2c-831e-327486533dd2.xml +79 -0
  303. data/test/stub_responses/records/invoice-30dbd181-72a8-43df-b392-4241bf43d5fc.xml +79 -0
  304. data/test/stub_responses/records/invoice-33e4123e-7cdd-4f05-9a0a-eb8adeb2b868.xml +94 -0
  305. data/test/stub_responses/records/invoice-387db692-26ac-47e6-b6cc-015343809bda.xml +75 -0
  306. data/test/stub_responses/records/invoice-3b28bf11-ed2f-4cf4-8e9e-fcae730cc292.xml +91 -0
  307. data/test/stub_responses/records/invoice-3fcb9847-b350-412e-ab90-7d9d774ad881.xml +91 -0
  308. data/test/stub_responses/records/invoice-440613e4-4785-4eff-9ba1-c432816cf8c7.xml +78 -0
  309. data/test/stub_responses/records/invoice-4602eda6-abe9-448e-b65f-ae6bea21f0eb.xml +98 -0
  310. data/test/stub_responses/records/invoice-46441f63-873f-4cdc-a278-b8fe516f3abb.xml +94 -0
  311. data/test/stub_responses/records/invoice-4ad1ec01-f4a3-41d7-bbb4-d2ab2fec8e65.xml +74 -0
  312. data/test/stub_responses/records/invoice-4b9afceb-f7c7-4e64-8aac-7b009971fd52.xml +86 -0
  313. data/test/stub_responses/records/invoice-4edbf6d5-4e92-43af-bedd-7effc0b86833.xml +70 -0
  314. data/test/stub_responses/records/invoice-4fad1af2-b871-4ac5-a15a-3c5e32d2e2c4.xml +93 -0
  315. data/test/stub_responses/records/invoice-52ee4d67-cae4-462c-adb2-182c39017f3d.xml +83 -0
  316. data/test/stub_responses/records/invoice-54585f46-c1a0-4432-bd4f-c1fae2fba59b.xml +67 -0
  317. data/test/stub_responses/records/invoice-5613938b-9e27-472e-92ae-3b038b669d10.xml +87 -0
  318. data/test/stub_responses/records/invoice-5aa9451d-95d1-4f95-a966-bbab2573f71c.xml +75 -0
  319. data/test/stub_responses/records/invoice-5aadcd34-01a9-4b8d-a2bb-d7cc1de9fa45.xml +89 -0
  320. data/test/stub_responses/records/invoice-5f6deadf-36a2-495a-9980-ceb11e8af9a9.xml +85 -0
  321. data/test/stub_responses/records/invoice-625ffe1b-f5d8-438e-a376-981de5f5a733.xml +77 -0
  322. data/test/stub_responses/records/invoice-64cd559e-8e03-46af-b461-8555285cee71.xml +86 -0
  323. data/test/stub_responses/records/invoice-666f8dbb-bc9a-476c-8ec4-4665d7f83190.xml +63 -0
  324. data/test/stub_responses/records/invoice-66fbe37f-49b1-43fd-97ed-85114022cd2f.xml +79 -0
  325. data/test/stub_responses/records/invoice-673dd7cc-beb7-4697-83d4-0c47cb400cc2.xml +95 -0
  326. data/test/stub_responses/records/invoice-69fc971e-9b37-41c5-9c87-174330f22343.xml +66 -0
  327. data/test/stub_responses/records/invoice-70e6db69-e5a4-42c7-a397-aa3212c2945f.xml +75 -0
  328. data/test/stub_responses/records/invoice-762aa45d-4632-45b5-8087-b4f47690665e.xml +54 -0
  329. data/test/stub_responses/records/invoice-766d1289-b440-4675-a656-1a0612ecac77.xml +76 -0
  330. data/test/stub_responses/records/invoice-76bcb361-f93b-4513-b312-5a4af306d276.xml +67 -0
  331. data/test/stub_responses/records/invoice-76e3f056-479f-417c-a72b-f3d767899b87.xml +91 -0
  332. data/test/stub_responses/records/invoice-77b338ef-ecc0-4b95-a0d7-2617b0054611.xml +114 -0
  333. data/test/stub_responses/records/invoice-7be9956d-5316-4f6b-a66a-d355b3f159b2.xml +84 -0
  334. data/test/stub_responses/records/invoice-7dae876a-b424-436b-a4e6-17b3fdeec80c.xml +91 -0
  335. data/test/stub_responses/records/invoice-7e862d93-8dab-4856-8b0c-d844e09d750f.xml +68 -0
  336. data/test/stub_responses/records/invoice-803f70b0-56d9-4157-9787-41df271777a0.xml +84 -0
  337. data/test/stub_responses/records/invoice-86102312-aa3f-438c-9938-6840f4d8dda6.xml +75 -0
  338. data/test/stub_responses/records/invoice-8694c9c5-7097-4449-a708-b8c1982921a4.xml +69 -0
  339. data/test/stub_responses/records/invoice-86d6e00f-ef56-49f7-9a54-796ccd5ca057.xml +85 -0
  340. data/test/stub_responses/records/invoice-88e77f0f-54a5-4efc-a979-7e22223cc4d7.xml +66 -0
  341. data/test/stub_responses/records/invoice-8b0ccb6a-d9b7-4da5-8360-ef7fb157b5aa.xml +66 -0
  342. data/test/stub_responses/records/invoice-935fc854-8037-4111-8d91-993010c331cc.xml +74 -0
  343. data/test/stub_responses/records/invoice-95ef3000-c764-4ba9-a66a-b6e2d161f839.xml +62 -0
  344. data/test/stub_responses/records/invoice-962ef33f-c9d2-4602-9b9f-93a02bea23b3.xml +93 -0
  345. data/test/stub_responses/records/invoice-9868b472-1983-48e9-8edf-7e81ddf2c03a.xml +85 -0
  346. data/test/stub_responses/records/invoice-9a448e9b-a9fa-4a8b-98f5-6dc892a37374.xml +62 -0
  347. data/test/stub_responses/records/invoice-a1d04a14-96a8-4067-a0ff-8136990a354f.xml +91 -0
  348. data/test/stub_responses/records/invoice-a3bc62ef-f11b-4a9c-a4f9-a342bda371b5.xml +66 -0
  349. data/test/stub_responses/records/invoice-a6894ca0-60ee-4d45-9dd4-b44fcba46ec5.xml +90 -0
  350. data/test/stub_responses/records/invoice-a77268ce-74b2-483d-a2b3-70dbdc9e49d2.xml +78 -0
  351. data/test/stub_responses/records/invoice-a9f765e6-b9bc-4505-a47b-fb3ecb327e7b.xml +88 -0
  352. data/test/stub_responses/records/invoice-aa0173af-8707-4e7f-8dde-4c7a357bd312.xml +109 -0
  353. data/test/stub_responses/records/invoice-ab63738a-370a-43a5-bfa3-620d684e66d0.xml +83 -0
  354. data/test/stub_responses/records/invoice-b0344791-5a8a-40dd-a208-d99a461a6c10.xml +84 -0
  355. data/test/stub_responses/records/invoice-b1e53910-473c-46a3-b3cb-38ece571220e.xml +76 -0
  356. data/test/stub_responses/records/invoice-b2c02d0b-41a8-4d4d-97d7-014c78b3547d.xml +93 -0
  357. data/test/stub_responses/records/invoice-b75b3928-ab72-4424-8b93-9cdbbde4cd72.xml +90 -0
  358. data/test/stub_responses/records/invoice-bcd8a71f-aa31-4d0f-8a01-13ea26363ddf.xml +94 -0
  359. data/test/stub_responses/records/invoice-bfbb7c45-de02-45e7-b065-d9863ecfb0d8.xml +66 -0
  360. data/test/stub_responses/records/invoice-c12aff7e-12bf-4185-8702-460929f19674.xml +77 -0
  361. data/test/stub_responses/records/invoice-c3380b96-976d-4b3e-8b26-8d01eb6a3742.xml +87 -0
  362. data/test/stub_responses/records/invoice-c963f2b0-cbe1-4abd-9ccc-7e512c942068.xml +67 -0
  363. data/test/stub_responses/records/invoice-cba46b29-3788-4158-b668-ab10160ccbfe.xml +78 -0
  364. data/test/stub_responses/records/invoice-d62646b9-d0a9-4fdb-9561-756a8b7eba45.xml +63 -0
  365. data/test/stub_responses/records/invoice-dba2f021-f149-4191-a126-5351d587ab0e.xml +75 -0
  366. data/test/stub_responses/records/invoice-de5d9c29-21b3-4342-958b-ed72c4bd7ab0.xml +108 -0
  367. data/test/stub_responses/records/invoice-e3d96555-2876-4364-a46a-7551a4f52611.xml +123 -0
  368. data/test/stub_responses/records/invoice-e4a0afbd-aea0-450b-ae23-0ce921e84a77.xml +102 -0
  369. data/test/stub_responses/records/invoice-e9cb9ecb-58ef-43a8-bd20-69a85338142d.xml +76 -0
  370. data/test/stub_responses/records/invoice-ec9a6f67-7128-4a63-8ba3-5e516f455f9b.xml +94 -0
  371. data/test/stub_responses/records/invoice-ed0f2587-84fc-4aef-bc4b-b1a262e24484.xml +81 -0
  372. data/test/stub_responses/records/invoice-f362ca53-8ade-4047-865a-bb64bee5863d.xml +74 -0
  373. data/test/stub_responses/records/invoice-f571c38b-5be1-41e1-ad5a-ff6184284beb.xml +114 -0
  374. data/test/stub_responses/records/invoice-f5832195-5cd3-4660-ad3f-b73d9c64f263.xml +85 -0
  375. data/test/stub_responses/records/invoice-f9c857eb-64cd-4235-a078-d04b52c77ea7.xml +76 -0
  376. data/test/stub_responses/records/manual_journal-4765d07b-aa03-4e56-9166-50661958c864.xml +38 -0
  377. data/test/stub_responses/records/manual_journal-53fc5558-5b76-4ecd-ae5c-c4af3ccde87c.xml +31 -0
  378. data/test/stub_responses/records/manual_journal-bb6cfcfc-4500-4475-bd3a-93ee512428e0.xml +31 -0
  379. data/test/stub_responses/records/manual_journal-f00a355b-7374-445c-886b-0437bea4095c.xml +45 -0
  380. data/test/stub_responses/records/prepayment-7d3619b1-82cc-405b-8f44-9d4f9a787a8a.xml +92 -0
  381. data/test/stub_responses/records/repeating_invoice-ad3550bc-1ae0-45c0-a782-48c6d2061127.xml +43 -0
  382. data/test/stub_responses/refresh_responses.rb +29 -0
  383. data/test/stub_responses/repeating_invoices.xml +43 -0
  384. data/test/stub_responses/reports/trial_balance.xml +1435 -0
  385. data/test/stub_responses/tax_rates.xml +198 -0
  386. data/test/stub_responses/token_expired +1 -0
  387. data/test/stub_responses/tracking_categories.xml +27 -0
  388. data/test/stub_responses/unknown_error.xml +1 -0
  389. data/test/stub_responses/users.xml +17 -0
  390. data/test/test_helper.rb +72 -0
  391. data/test/unit/generic_application_test.rb +52 -0
  392. data/test/unit/http_test.rb +302 -0
  393. data/test/unit/models/address_test.rb +92 -0
  394. data/test/unit/models/bank_transaction_model_parsing_test.rb +133 -0
  395. data/test/unit/models/bank_transaction_test.rb +44 -0
  396. data/test/unit/models/bank_transaction_validation_test.rb +115 -0
  397. data/test/unit/models/contact_test.rb +132 -0
  398. data/test/unit/models/credit_note_test.rb +37 -0
  399. data/test/unit/models/employee_test.rb +43 -0
  400. data/test/unit/models/invoice_test.rb +133 -0
  401. data/test/unit/models/journal_line_test.rb +22 -0
  402. data/test/unit/models/journal_test.rb +44 -0
  403. data/test/unit/models/line_item_sum_test.rb +25 -0
  404. data/test/unit/models/line_item_test.rb +59 -0
  405. data/test/unit/models/manual_journal_test.rb +25 -0
  406. data/test/unit/models/organisation_test.rb +52 -0
  407. data/test/unit/models/payment_service_test.rb +29 -0
  408. data/test/unit/models/phone_test.rb +31 -0
  409. data/test/unit/models/prepayment_test.rb +21 -0
  410. data/test/unit/models/repeating_invoice_test.rb +36 -0
  411. data/test/unit/models/tax_rate_test.rb +132 -0
  412. data/test/unit/oauth2_test.rb +171 -0
  413. data/test/unit/oauth_config_test.rb +20 -0
  414. data/test/unit/oauth_test.rb +179 -0
  415. data/test/unit/private_application_test.rb +20 -0
  416. data/test/unit/record/base_model_test.rb +58 -0
  417. data/test/unit/record/base_test.rb +174 -0
  418. data/test/unit/record/block_validator_test.rb +125 -0
  419. data/test/unit/record/connection_test.rb +60 -0
  420. data/test/unit/record/model_definition_test.rb +165 -0
  421. data/test/unit/record/parse_params_test.rb +59 -0
  422. data/test/unit/record/parse_where_hash_test.rb +63 -0
  423. data/test/unit/record/record_association_test.rb +93 -0
  424. data/test/unit/record/validators_test.rb +228 -0
  425. data/test/unit/record_definition_test.rb +27 -0
  426. data/test/unit/report_definition_test.rb +26 -0
  427. data/test/unit/report_test.rb +154 -0
  428. data/test/unit_test_helper.rb +16 -0
  429. metadata +1024 -0
@@ -0,0 +1,27 @@
1
+ require 'unit_test_helper'
2
+
3
+ class RecordDefinitionTest < Test::Unit::TestCase
4
+ include TestHelper
5
+
6
+ def setup
7
+ @client = Xeroizer::PublicApplication.new(CONSUMER_KEY, CONSUMER_SECRET)
8
+ end
9
+
10
+ context "record definitions" do
11
+
12
+ should "be defined correctly" do
13
+ [
14
+ :Account, :BrandingTheme, :Contact, :CreditNote, :Currency, :Invoice,
15
+ :Item, :Journal, :ManualJournal, :Organisation, :Payment, :TaxRate,
16
+ :TrackingCategory, :User
17
+ ].each do | record_type |
18
+ record_factory = @client.send(record_type)
19
+ assert_kind_of(Xeroizer::Record::BaseModel, record_factory)
20
+ assert_kind_of(Xeroizer::GenericApplication, record_factory.application)
21
+ assert_equal(record_type.to_s, record_factory.model_name)
22
+ end
23
+ end
24
+
25
+ end
26
+
27
+ end
@@ -0,0 +1,26 @@
1
+ require 'unit_test_helper'
2
+
3
+ class ReportDefinitionTest < Test::Unit::TestCase
4
+ include TestHelper
5
+
6
+ def setup
7
+ @client = Xeroizer::PublicApplication.new(CONSUMER_KEY, CONSUMER_SECRET)
8
+ end
9
+
10
+ context "report definitions" do
11
+
12
+ should "be defined correctly" do
13
+ [
14
+ :AgedPayablesByContact, :AgedReceivablesByContact, :BalanceSheet, :BankStatement, :BankSummary,
15
+ :BudgetSummary, :ExecutiveSummary, :ProfitAndLoss, :TrialBalance
16
+ ].each do | report_type |
17
+ report_factory = @client.send(report_type)
18
+ assert_kind_of(Xeroizer::Report::Factory, report_factory)
19
+ assert_kind_of(Xeroizer::GenericApplication, report_factory.application)
20
+ assert_equal(report_type.to_s, report_factory.report_type)
21
+ end
22
+ end
23
+
24
+ end
25
+
26
+ end
@@ -0,0 +1,154 @@
1
+ require 'unit_test_helper'
2
+
3
+ class MockNonReportClassDefinition; end
4
+
5
+ class FactoryTest < Test::Unit::TestCase
6
+ include TestHelper
7
+
8
+ def setup
9
+ @client = Xeroizer::PublicApplication.new(CONSUMER_KEY, CONSUMER_SECRET)
10
+ mock_report_api("TrialBalance")
11
+ @report = @client.TrialBalance.get
12
+ end
13
+
14
+ context "report factory" do
15
+
16
+ should "have correct API-part of URL based on its type" do
17
+ [
18
+ :AgedPayablesByContact, :AgedReceivablesByContact, :BalanceSheet, :BankStatement, :BankSummary,
19
+ :BudgetSummary, :ExecutiveSummary, :ProfitAndLoss, :TrialBalance
20
+ ].each do | report_type |
21
+ report_factory = @client.send(report_type)
22
+ assert_equal("Reports/#{report_type}", report_factory.api_controller_name)
23
+ end
24
+ end
25
+
26
+ should "build report model from XML" do
27
+ assert_kind_of(Xeroizer::Report::Base, @report)
28
+ end
29
+
30
+ should "have all attributes in report summary" do
31
+ assert_equal("TrialBalance", @report.id)
32
+ assert_equal("TrialBalance", @report.type)
33
+ assert_equal("Trial Balance", @report.name)
34
+ assert_equal(['Trial Balance', 'Demo Company (AU)', 'As at 23 March 2011'], @report.titles)
35
+ assert_equal(Date.parse('2011-03-23'), @report.date)
36
+ assert_equal(Time.parse('2011-03-23T00:29:12.6021453Z'), @report.updated_at)
37
+ end
38
+
39
+ should "have valid rows" do
40
+ assert_not_equal(0, @report.rows.size)
41
+ @report.rows.each do | row |
42
+ assert_kind_of(Xeroizer::Report::Row, row)
43
+ assert(%w(Header Row SummaryRow Section).include?(row.type), "'#{row.type}' is not a valid row type.")
44
+ end
45
+ end
46
+
47
+ should "have cells and no rows if not Section" do
48
+ @report.rows.each do | row |
49
+ if row.type != 'Section'
50
+ assert_not_equal(0, row.cells.size)
51
+ assert_equal(0, row.rows.size)
52
+ end
53
+ end
54
+ end
55
+
56
+ should "have rows and no cells if Section" do
57
+ @report.rows.each do | row |
58
+ if row.type == 'Section'
59
+ assert_equal(0, row.cells.size)
60
+ assert_not_equal(0, row.rows.size)
61
+ end
62
+ end
63
+ end
64
+
65
+ should "convert cells to BigDecimal where possible" do
66
+ def assess_row(row)
67
+ return 0 unless row.row? || row.summary?
68
+
69
+ row.cells.select {|cell| cell.value.is_a?(BigDecimal) && cell.value > 0}.length
70
+ end
71
+
72
+ counter = 0
73
+
74
+ @report.rows.each do |row|
75
+ if row.section?
76
+ row.rows.each do |inner_row|
77
+ counter += assess_row(inner_row)
78
+ end
79
+ else
80
+ counter += assess_row(row)
81
+ end
82
+ end
83
+ assert_not_equal(0, counter, "at least one converted number in the report should be greater than 0")
84
+ end
85
+
86
+ should "be at least one Section row with a title" do
87
+ counter = 0
88
+ @report.rows.each do | row |
89
+ counter += 1 if row.section? && row.title.to_s != ''
90
+ end
91
+ assert_not_equal(0, counter, "at least one row with type 'Section' should have a title")
92
+ end
93
+
94
+ should "have working report type helpers" do
95
+ @report.rows.each do | row |
96
+ check_valid_report_type(row)
97
+
98
+ next unless row.type == 'Section'
99
+ row.rows.each do |inner_row|
100
+ check_valid_report_type(inner_row)
101
+ end
102
+ end
103
+ end
104
+
105
+ should "have valid header row" do
106
+ assert_kind_of(Xeroizer::Report::HeaderRow, @report.header)
107
+ assert_equal(['Account', 'Debit', 'Credit', 'YTD Debit', 'YTD Credit'], @report.header.cells.map { | c | c.value })
108
+ end
109
+
110
+ should "have sections" do
111
+ assert_not_equal(0, @report.sections)
112
+ @report.sections.each do | section |
113
+ assert_kind_of(Xeroizer::Report::SectionRow, section)
114
+ end
115
+ end
116
+
117
+ should "have summary" do
118
+ assert_kind_of(Xeroizer::Report::SummaryRow, @report.summary)
119
+ assert_equal(['Total', '33244.04', '33244.04', '80938.93', '80938.93'], @report.summary.cells.map { | c | c.value.to_s })
120
+ end
121
+
122
+ should "have summary on final section for trial balance (which has a blank title)" do
123
+ section = @report.sections.last
124
+ summary = section.rows.last
125
+ assert_kind_of(Xeroizer::Report::SummaryRow, summary)
126
+ assert_nil(section.title)
127
+ assert_equal(['Total', '33244.04', '33244.04', '80938.93', '80938.93'], summary.cells.map { | c | c.value.to_s })
128
+ end
129
+
130
+ end
131
+
132
+ context "report factory in the dirty real world" do
133
+
134
+ should "not use inheritance to find report class" do
135
+ report = Xeroizer::Report::Factory.new(@client, :MockNonReportClassDefinition).klass
136
+ assert_equal(Xeroizer::Report::Base, report)
137
+ end
138
+
139
+ end
140
+
141
+ private
142
+
143
+ def check_valid_report_type(row)
144
+ case row.type
145
+ when 'Header' then assert_equal(true, row.header?)
146
+ when 'Row' then assert_equal(true, row.row?)
147
+ when 'SummaryRow' then assert_equal(true, row.summary?)
148
+ when 'Section' then assert_equal(true, row.section?)
149
+ else
150
+ assert(false, "Invalid type: #{row.type}")
151
+ end
152
+ end
153
+
154
+ end
@@ -0,0 +1,16 @@
1
+ require 'test_helper'
2
+ require 'webmock'
3
+
4
+ include WebMock::API
5
+ WebMock.disable_net_connect!(allow_localhost: true)
6
+
7
+ class UnitTestCase < Test::Unit::TestCase
8
+ def setup
9
+ WebMock.reset!
10
+ WebMock.enable!
11
+ end
12
+
13
+ def teardown
14
+ WebMock.disable!
15
+ end
16
+ end
metadata ADDED
@@ -0,0 +1,1024 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: xeroizer-3-pre-beta
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.0.0.pre.beta
5
+ platform: ruby
6
+ authors:
7
+ - Wayne Robinson
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-07-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.5'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.5'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: mocha
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: shoulda
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: test-unit
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: turn
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: ansi
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: redcarpet
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: yard
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: webmock
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ - !ruby/object:Gem::Dependency
154
+ name: pry
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: '0'
167
+ - !ruby/object:Gem::Dependency
168
+ name: builder
169
+ requirement: !ruby/object:Gem::Requirement
170
+ requirements:
171
+ - - ">="
172
+ - !ruby/object:Gem::Version
173
+ version: 2.1.2
174
+ type: :runtime
175
+ prerelease: false
176
+ version_requirements: !ruby/object:Gem::Requirement
177
+ requirements:
178
+ - - ">="
179
+ - !ruby/object:Gem::Version
180
+ version: 2.1.2
181
+ - !ruby/object:Gem::Dependency
182
+ name: oauth
183
+ requirement: !ruby/object:Gem::Requirement
184
+ requirements:
185
+ - - ">="
186
+ - !ruby/object:Gem::Version
187
+ version: 0.4.5
188
+ type: :runtime
189
+ prerelease: false
190
+ version_requirements: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ version: 0.4.5
195
+ - !ruby/object:Gem::Dependency
196
+ name: oauth2
197
+ requirement: !ruby/object:Gem::Requirement
198
+ requirements:
199
+ - - ">="
200
+ - !ruby/object:Gem::Version
201
+ version: 1.4.0
202
+ type: :runtime
203
+ prerelease: false
204
+ version_requirements: !ruby/object:Gem::Requirement
205
+ requirements:
206
+ - - ">="
207
+ - !ruby/object:Gem::Version
208
+ version: 1.4.0
209
+ - !ruby/object:Gem::Dependency
210
+ name: activesupport
211
+ requirement: !ruby/object:Gem::Requirement
212
+ requirements:
213
+ - - ">="
214
+ - !ruby/object:Gem::Version
215
+ version: '0'
216
+ type: :runtime
217
+ prerelease: false
218
+ version_requirements: !ruby/object:Gem::Requirement
219
+ requirements:
220
+ - - ">="
221
+ - !ruby/object:Gem::Version
222
+ version: '0'
223
+ - !ruby/object:Gem::Dependency
224
+ name: nokogiri
225
+ requirement: !ruby/object:Gem::Requirement
226
+ requirements:
227
+ - - ">="
228
+ - !ruby/object:Gem::Version
229
+ version: '0'
230
+ type: :runtime
231
+ prerelease: false
232
+ version_requirements: !ruby/object:Gem::Requirement
233
+ requirements:
234
+ - - ">="
235
+ - !ruby/object:Gem::Version
236
+ version: '0'
237
+ - !ruby/object:Gem::Dependency
238
+ name: tzinfo
239
+ requirement: !ruby/object:Gem::Requirement
240
+ requirements:
241
+ - - ">="
242
+ - !ruby/object:Gem::Version
243
+ version: '0'
244
+ type: :runtime
245
+ prerelease: false
246
+ version_requirements: !ruby/object:Gem::Requirement
247
+ requirements:
248
+ - - ">="
249
+ - !ruby/object:Gem::Version
250
+ version: '0'
251
+ - !ruby/object:Gem::Dependency
252
+ name: i18n
253
+ requirement: !ruby/object:Gem::Requirement
254
+ requirements:
255
+ - - ">="
256
+ - !ruby/object:Gem::Version
257
+ version: '0'
258
+ type: :runtime
259
+ prerelease: false
260
+ version_requirements: !ruby/object:Gem::Requirement
261
+ requirements:
262
+ - - ">="
263
+ - !ruby/object:Gem::Version
264
+ version: '0'
265
+ description: Do not use this forked gem. Fork of Ruby library for the Xero accounting
266
+ API. Do not use this forked gem. Originally developed by Wayne Robinson, now maintained
267
+ by the Xero API Team & Xero/Ruby developer community.
268
+ email:
269
+ - wayne.robinson@gmail.com
270
+ - api@xero.com
271
+ executables: []
272
+ extensions: []
273
+ extra_rdoc_files: []
274
+ files:
275
+ - LICENSE.txt
276
+ - README.md
277
+ - lib/class_level_inheritable_attributes.rb
278
+ - lib/xeroizer.rb
279
+ - lib/xeroizer/application_http_proxy.rb
280
+ - lib/xeroizer/ca-certificates.crt
281
+ - lib/xeroizer/configuration.rb
282
+ - lib/xeroizer/connection.rb
283
+ - lib/xeroizer/exceptions.rb
284
+ - lib/xeroizer/generic_application.rb
285
+ - lib/xeroizer/http.rb
286
+ - lib/xeroizer/http_encoding_helper.rb
287
+ - lib/xeroizer/http_response.rb
288
+ - lib/xeroizer/logging.rb
289
+ - lib/xeroizer/models/account.rb
290
+ - lib/xeroizer/models/accounts_payable.rb
291
+ - lib/xeroizer/models/accounts_receivable.rb
292
+ - lib/xeroizer/models/address.rb
293
+ - lib/xeroizer/models/allocation.rb
294
+ - lib/xeroizer/models/attachment.rb
295
+ - lib/xeroizer/models/balances.rb
296
+ - lib/xeroizer/models/bank_account.rb
297
+ - lib/xeroizer/models/bank_transaction.rb
298
+ - lib/xeroizer/models/bank_transfer.rb
299
+ - lib/xeroizer/models/batch_payment.rb
300
+ - lib/xeroizer/models/batch_payments.rb
301
+ - lib/xeroizer/models/bills.rb
302
+ - lib/xeroizer/models/branding_theme.rb
303
+ - lib/xeroizer/models/contact.rb
304
+ - lib/xeroizer/models/contact_group.rb
305
+ - lib/xeroizer/models/contact_person.rb
306
+ - lib/xeroizer/models/contact_purchases_tracking_category.rb
307
+ - lib/xeroizer/models/contact_sales_tracking_category.rb
308
+ - lib/xeroizer/models/credit_note.rb
309
+ - lib/xeroizer/models/currency.rb
310
+ - lib/xeroizer/models/employee.rb
311
+ - lib/xeroizer/models/expense_claim.rb
312
+ - lib/xeroizer/models/external_link.rb
313
+ - lib/xeroizer/models/from_bank_account.rb
314
+ - lib/xeroizer/models/invoice.rb
315
+ - lib/xeroizer/models/invoice_reminder.rb
316
+ - lib/xeroizer/models/item.rb
317
+ - lib/xeroizer/models/item_purchase_details.rb
318
+ - lib/xeroizer/models/item_sales_details.rb
319
+ - lib/xeroizer/models/journal.rb
320
+ - lib/xeroizer/models/journal_line.rb
321
+ - lib/xeroizer/models/journal_line_tracking_category.rb
322
+ - lib/xeroizer/models/line_amount_type.rb
323
+ - lib/xeroizer/models/line_item.rb
324
+ - lib/xeroizer/models/line_item_sum.rb
325
+ - lib/xeroizer/models/manual_journal.rb
326
+ - lib/xeroizer/models/manual_journal_line.rb
327
+ - lib/xeroizer/models/online_invoice.rb
328
+ - lib/xeroizer/models/option.rb
329
+ - lib/xeroizer/models/organisation.rb
330
+ - lib/xeroizer/models/overpayment.rb
331
+ - lib/xeroizer/models/payment.rb
332
+ - lib/xeroizer/models/payment_service.rb
333
+ - lib/xeroizer/models/payment_terms.rb
334
+ - lib/xeroizer/models/payroll/address.rb
335
+ - lib/xeroizer/models/payroll/bank_account.rb
336
+ - lib/xeroizer/models/payroll/benefit_line.rb
337
+ - lib/xeroizer/models/payroll/benefit_type.rb
338
+ - lib/xeroizer/models/payroll/deduction_line.rb
339
+ - lib/xeroizer/models/payroll/deduction_type.rb
340
+ - lib/xeroizer/models/payroll/earnings_line.rb
341
+ - lib/xeroizer/models/payroll/earnings_type.rb
342
+ - lib/xeroizer/models/payroll/employee.rb
343
+ - lib/xeroizer/models/payroll/leave_application.rb
344
+ - lib/xeroizer/models/payroll/leave_line.rb
345
+ - lib/xeroizer/models/payroll/leave_period.rb
346
+ - lib/xeroizer/models/payroll/pay_items.rb
347
+ - lib/xeroizer/models/payroll/pay_run.rb
348
+ - lib/xeroizer/models/payroll/pay_schedule.rb
349
+ - lib/xeroizer/models/payroll/pay_template.rb
350
+ - lib/xeroizer/models/payroll/payment_method.rb
351
+ - lib/xeroizer/models/payroll/paystub.rb
352
+ - lib/xeroizer/models/payroll/reimbursement_line.rb
353
+ - lib/xeroizer/models/payroll/reimbursement_type.rb
354
+ - lib/xeroizer/models/payroll/salary_and_wage.rb
355
+ - lib/xeroizer/models/payroll/super_line.rb
356
+ - lib/xeroizer/models/payroll/tax_declaration.rb
357
+ - lib/xeroizer/models/payroll/time_off_line.rb
358
+ - lib/xeroizer/models/payroll/time_off_type.rb
359
+ - lib/xeroizer/models/payroll/work_location.rb
360
+ - lib/xeroizer/models/phone.rb
361
+ - lib/xeroizer/models/prepayment.rb
362
+ - lib/xeroizer/models/purchase_order.rb
363
+ - lib/xeroizer/models/receipt.rb
364
+ - lib/xeroizer/models/repeating_invoice.rb
365
+ - lib/xeroizer/models/sales.rb
366
+ - lib/xeroizer/models/schedule.rb
367
+ - lib/xeroizer/models/tax_component.rb
368
+ - lib/xeroizer/models/tax_rate.rb
369
+ - lib/xeroizer/models/to_bank_account.rb
370
+ - lib/xeroizer/models/tracking_category.rb
371
+ - lib/xeroizer/models/tracking_category_child.rb
372
+ - lib/xeroizer/models/user.rb
373
+ - lib/xeroizer/oauth.rb
374
+ - lib/xeroizer/oauth2.rb
375
+ - lib/xeroizer/oauth2_application.rb
376
+ - lib/xeroizer/partner_application.rb
377
+ - lib/xeroizer/payroll_application.rb
378
+ - lib/xeroizer/private_application.rb
379
+ - lib/xeroizer/public_application.rb
380
+ - lib/xeroizer/record/application_helper.rb
381
+ - lib/xeroizer/record/base.rb
382
+ - lib/xeroizer/record/base_model.rb
383
+ - lib/xeroizer/record/base_model_http_proxy.rb
384
+ - lib/xeroizer/record/model_definition_helper.rb
385
+ - lib/xeroizer/record/payroll_base.rb
386
+ - lib/xeroizer/record/payroll_base_model.rb
387
+ - lib/xeroizer/record/record_association_helper.rb
388
+ - lib/xeroizer/record/validation_helper.rb
389
+ - lib/xeroizer/record/validators/associated_validator.rb
390
+ - lib/xeroizer/record/validators/block_validator.rb
391
+ - lib/xeroizer/record/validators/inclusion_of_validator.rb
392
+ - lib/xeroizer/record/validators/length_of_validator.rb
393
+ - lib/xeroizer/record/validators/presence_of_validator.rb
394
+ - lib/xeroizer/record/validators/validator.rb
395
+ - lib/xeroizer/record/xml_helper.rb
396
+ - lib/xeroizer/report/aged_receivables_by_contact.rb
397
+ - lib/xeroizer/report/base.rb
398
+ - lib/xeroizer/report/cell.rb
399
+ - lib/xeroizer/report/cell_xml_helper.rb
400
+ - lib/xeroizer/report/factory.rb
401
+ - lib/xeroizer/report/row/header.rb
402
+ - lib/xeroizer/report/row/row.rb
403
+ - lib/xeroizer/report/row/section.rb
404
+ - lib/xeroizer/report/row/summary.rb
405
+ - lib/xeroizer/report/row/xml_helper.rb
406
+ - lib/xeroizer/report/xml_helper.rb
407
+ - lib/xeroizer/response.rb
408
+ - lib/xeroizer/version.rb
409
+ - test/acceptance/about_creating_bank_transactions_test.rb
410
+ - test/acceptance/about_creating_prepayment_test.rb
411
+ - test/acceptance/about_fetching_bank_transactions_test.rb
412
+ - test/acceptance/about_online_invoice_test.rb
413
+ - test/acceptance/acceptance_test.rb
414
+ - test/acceptance/bank_transaction_reference_data.rb
415
+ - test/acceptance/bank_transfer_test.rb
416
+ - test/acceptance/bulk_operations_test.rb
417
+ - test/acceptance/connections_test.rb
418
+ - test/stub_responses/accounts.xml
419
+ - test/stub_responses/api_exception.xml
420
+ - test/stub_responses/bad_request.json
421
+ - test/stub_responses/bogus_oauth_error
422
+ - test/stub_responses/branding_themes.xml
423
+ - test/stub_responses/connections.json
424
+ - test/stub_responses/contact.xml
425
+ - test/stub_responses/contact_with_details.xml
426
+ - test/stub_responses/contacts.xml
427
+ - test/stub_responses/create_credit_note.xml
428
+ - test/stub_responses/create_invoice.xml
429
+ - test/stub_responses/credit_note.xml
430
+ - test/stub_responses/credit_note_not_found_error.xml
431
+ - test/stub_responses/credit_notes.xml
432
+ - test/stub_responses/currencies.xml
433
+ - test/stub_responses/employees.xml
434
+ - test/stub_responses/expired_oauth2_token.json
435
+ - test/stub_responses/generic_response_error.json
436
+ - test/stub_responses/invalid_api_key_error.xml
437
+ - test/stub_responses/invalid_consumer_key
438
+ - test/stub_responses/invalid_oauth2_request_token.json
439
+ - test/stub_responses/invalid_request_token
440
+ - test/stub_responses/invalid_tenant_header.json
441
+ - test/stub_responses/invoice.xml
442
+ - test/stub_responses/invoice_not_found_error.xml
443
+ - test/stub_responses/invoices.xml
444
+ - test/stub_responses/items.xml
445
+ - test/stub_responses/manual_journal.xml
446
+ - test/stub_responses/manual_journals.xml
447
+ - test/stub_responses/nonce_used
448
+ - test/stub_responses/object_not_found.json
449
+ - test/stub_responses/organisation.xml
450
+ - test/stub_responses/organisations.xml
451
+ - test/stub_responses/payment_service.xml
452
+ - test/stub_responses/payments.xml
453
+ - test/stub_responses/prepayments.xml
454
+ - test/stub_responses/rate_limit_exceeded
455
+ - test/stub_responses/records/contact-043892a1-aef1-4c18-88d8-b8ccb6d31466.xml
456
+ - test/stub_responses/records/contact-09664078-efe2-4a88-89a5-67eac9b0047b.xml
457
+ - test/stub_responses/records/contact-0a4cf37b-a1a8-4753-9ee2-f9207f63a8ff.xml
458
+ - test/stub_responses/records/contact-0e74f929-11b9-4255-a035-1fdfe573e676.xml
459
+ - test/stub_responses/records/contact-0f471ca5-15c9-405e-a1b9-7cc35194b673.xml
460
+ - test/stub_responses/records/contact-13cd4c47-baa6-4f07-93f6-6442310df4bf.xml
461
+ - test/stub_responses/records/contact-158a2667-82ee-43bf-8f33-a6cc9524092d.xml
462
+ - test/stub_responses/records/contact-17465072-6fa3-40bf-bc42-97765d9e1bea.xml
463
+ - test/stub_responses/records/contact-1975b0ed-b7ba-4c61-bae8-2aa6d78b0dee.xml
464
+ - test/stub_responses/records/contact-1b2be6e9-8d58-4da9-aaf8-4fe5471b653c.xml
465
+ - test/stub_responses/records/contact-1c40da58-fe1d-4e97-b729-b2abdae94d9e.xml
466
+ - test/stub_responses/records/contact-258176a5-c622-4394-9c94-6f88c3ea12e5.xml
467
+ - test/stub_responses/records/contact-299dd3a0-a417-4a37-8a04-2f55e91963e5.xml
468
+ - test/stub_responses/records/contact-2be39278-5154-4ed1-8eb0-676f25acfc66.xml
469
+ - test/stub_responses/records/contact-2e58cff6-488c-4a32-884b-baf848010229.xml
470
+ - test/stub_responses/records/contact-2faccd41-935e-40aa-b74e-e2fc28ac34c3.xml
471
+ - test/stub_responses/records/contact-31af01e7-2ca7-45b9-a500-b02db996568e.xml
472
+ - test/stub_responses/records/contact-344f1113-a25b-4344-b82e-bedeacc17c8e.xml
473
+ - test/stub_responses/records/contact-3e776c4b-ea9e-4bb1-96be-6b0c7a71a37f.xml
474
+ - test/stub_responses/records/contact-3fc1fc6c-e5ff-4e40-b6f3-7eb535637d87.xml
475
+ - test/stub_responses/records/contact-416ab20c-5357-4beb-a740-e8d175d71efb.xml
476
+ - test/stub_responses/records/contact-41a42865-f15a-4fa1-b643-47877608f557.xml
477
+ - test/stub_responses/records/contact-42771b60-19a7-4692-af81-dd9f9b9362d4.xml
478
+ - test/stub_responses/records/contact-451ceb28-9610-44c9-8f35-3225482f2413.xml
479
+ - test/stub_responses/records/contact-4ab343ad-1ebb-4afe-9d48-1814a93c2081.xml
480
+ - test/stub_responses/records/contact-4bb77692-42d4-4565-85a0-8849eb85e039.xml
481
+ - test/stub_responses/records/contact-4dec292f-3ab7-46a8-83e4-5fb5eac42c7f.xml
482
+ - test/stub_responses/records/contact-4e2f192e-8397-4d4d-97ca-a4fc5ac531bf.xml
483
+ - test/stub_responses/records/contact-5188c17c-7786-4436-ad6e-9da2997386d0.xml
484
+ - test/stub_responses/records/contact-52442753-b1c4-40b7-9b79-c33997de5837.xml
485
+ - test/stub_responses/records/contact-565acaa9-e7f3-4fbf-80c3-16b081ddae10.xml
486
+ - test/stub_responses/records/contact-571a2414-81ff-4f8f-8498-d91d83793131.xml
487
+ - test/stub_responses/records/contact-58697449-85ef-46ae-83fc-6a9446f037fb.xml
488
+ - test/stub_responses/records/contact-58bf2ae3-5144-4628-8de2-e165ac2bcdc6.xml
489
+ - test/stub_responses/records/contact-5d41dafd-eb7e-42c1-bd5a-ba3be1da0960.xml
490
+ - test/stub_responses/records/contact-5f005a09-5ce4-4fb4-8096-e69c18be636e.xml
491
+ - test/stub_responses/records/contact-60d578d9-3e10-4aef-b5dc-9d9fd60a3633.xml
492
+ - test/stub_responses/records/contact-62392126-dba4-4a75-b907-5875ebf75259.xml
493
+ - test/stub_responses/records/contact-642c7fb5-e8e5-48e1-a710-39a18c6c3217.xml
494
+ - test/stub_responses/records/contact-64aebf9c-bb89-4b38-b99b-405bd1ece6fd.xml
495
+ - test/stub_responses/records/contact-64eedbc9-1fa0-485a-837f-705f23188161.xml
496
+ - test/stub_responses/records/contact-65e96c9f-1595-4653-9a8a-2a36d49223c2.xml
497
+ - test/stub_responses/records/contact-67d26b93-ccb4-4890-9bf1-284b70ea755d.xml
498
+ - test/stub_responses/records/contact-69d3e538-44b3-4e00-a5f6-7dddcb6e0656.xml
499
+ - test/stub_responses/records/contact-6a8450bc-f81a-4bb0-a8f6-aa4afe9497c7.xml
500
+ - test/stub_responses/records/contact-6c70e424-41d6-4b9b-af3e-b3a9f3589106.xml
501
+ - test/stub_responses/records/contact-6de0b0cf-560c-4503-aab3-e1543c329deb.xml
502
+ - test/stub_responses/records/contact-72dd6a02-396e-42a2-a4d6-cc3fa75dfece.xml
503
+ - test/stub_responses/records/contact-755f1475-d255-43a8-bedc-5ea7fd26c71f.xml
504
+ - test/stub_responses/records/contact-78a9d0a0-3d8c-4f84-af3e-f260bf4a9dc0.xml
505
+ - test/stub_responses/records/contact-79aa39ca-22b0-42c2-9026-78757a29d665.xml
506
+ - test/stub_responses/records/contact-804f4140-5978-48fe-ba20-b56e5b834b18.xml
507
+ - test/stub_responses/records/contact-812d4f28-1681-4241-8e34-d15c5520ba35.xml
508
+ - test/stub_responses/records/contact-860b99a9-0958-4c8d-a98f-bb1f092b16bb.xml
509
+ - test/stub_responses/records/contact-87c8da45-97cc-46be-b170-398da0eacfb8.xml
510
+ - test/stub_responses/records/contact-8a154a19-6c6c-404b-bbc9-6deae2d18251.xml
511
+ - test/stub_responses/records/contact-8bb6931d-2865-44e9-9a23-ed1fb9c7a46c.xml
512
+ - test/stub_responses/records/contact-936c9759-01da-4063-b472-424ab9f48212.xml
513
+ - test/stub_responses/records/contact-9d12a994-9640-4b75-95cc-3de1e9d0ef09.xml
514
+ - test/stub_responses/records/contact-9fe59245-1fbb-4157-93c3-dc97388f3746.xml
515
+ - test/stub_responses/records/contact-a06a7225-6f8a-4522-8400-c534dd43a16e.xml
516
+ - test/stub_responses/records/contact-a76a85fe-73a2-46fa-aba7-791f36103cdb.xml
517
+ - test/stub_responses/records/contact-a93b5f40-0346-4d21-9181-431e129911c0.xml
518
+ - test/stub_responses/records/contact-abf272dd-6b1d-4829-af88-c57bf55855e3.xml
519
+ - test/stub_responses/records/contact-ad24c33b-256b-4157-ad56-cbcf0e8db7b1.xml
520
+ - test/stub_responses/records/contact-b107129d-f4c9-438e-9573-64b778527f4a.xml
521
+ - test/stub_responses/records/contact-b233288a-aa26-4b26-9fc7-779d797dd56f.xml
522
+ - test/stub_responses/records/contact-b2b5333a-2546-4975-891f-d71a8a640d23.xml
523
+ - test/stub_responses/records/contact-b4d149bf-1823-4bd2-96da-9032388c9686.xml
524
+ - test/stub_responses/records/contact-b78d4fd1-4306-4d83-a0b9-61458d1c53a2.xml
525
+ - test/stub_responses/records/contact-b7d108a8-d5f7-4f16-a7c9-26eaed98e8de.xml
526
+ - test/stub_responses/records/contact-baeed0f3-7989-4874-99b3-59f23032cb73.xml
527
+ - test/stub_responses/records/contact-bc51a3a1-b7f6-46ca-ac9e-19b87e6ca100.xml
528
+ - test/stub_responses/records/contact-be9f3aab-52f5-4d9c-94b4-87f7d9e5ee8b.xml
529
+ - test/stub_responses/records/contact-c135f994-01e4-427b-9e15-acfe8a477c16.xml
530
+ - test/stub_responses/records/contact-c14edf75-15e4-4a9c-86e4-f52e2fe7cfa4.xml
531
+ - test/stub_responses/records/contact-ca9b9abc-c2dc-4221-8101-31f464d314cc.xml
532
+ - test/stub_responses/records/contact-cc4db604-9ed8-4eef-8a29-51b5b70496a0.xml
533
+ - test/stub_responses/records/contact-cce9b044-be4a-43b3-9dc7-c027d8dd35b2.xml
534
+ - test/stub_responses/records/contact-d0cd2c4f-18a0-4f7c-a32a-2db00f29d298.xml
535
+ - test/stub_responses/records/contact-d6851dc2-9ed9-4515-bc0b-810b09c06a6a.xml
536
+ - test/stub_responses/records/contact-d6a384fb-f46f-41a3-8ac7-b7bc9e0b5efa.xml
537
+ - test/stub_responses/records/contact-d74e61cf-2ad0-4f0d-b9d1-6a808e3f70cf.xml
538
+ - test/stub_responses/records/contact-d9ab0f61-3b56-4e2b-be39-f33c11bd99e3.xml
539
+ - test/stub_responses/records/contact-dbb1f0b5-a71b-4458-8462-104acd0fec6b.xml
540
+ - test/stub_responses/records/contact-dd981bd6-40dd-496d-a282-bf7d3391b8b9.xml
541
+ - test/stub_responses/records/contact-e1826204-cc0a-42a5-a6d0-4b352d9d5953.xml
542
+ - test/stub_responses/records/contact-e2d955db-f366-42dd-87f7-fbdb4da2306f.xml
543
+ - test/stub_responses/records/contact-e32e2130-3d27-443a-8313-48fffa03cf53.xml
544
+ - test/stub_responses/records/contact-e3a68332-d322-4816-8678-73a537c8cd33.xml
545
+ - test/stub_responses/records/contact-e6ac76a3-ca32-4fa1-8ef9-6a4bf8b0ec2a.xml
546
+ - test/stub_responses/records/contact-e6ca965d-7c48-480e-be39-e847307f474a.xml
547
+ - test/stub_responses/records/contact-e77d1f20-2e8e-46ec-9a10-50335a216724.xml
548
+ - test/stub_responses/records/contact-e8b98c13-a424-41d2-ba0e-7b7621411e7a.xml
549
+ - test/stub_responses/records/contact-e8e9a2c2-3e7e-48ed-8528-c3d61b28f276.xml
550
+ - test/stub_responses/records/contact-eb43fcc6-87ec-4a0a-b243-d718bee4e2cb.xml
551
+ - test/stub_responses/records/contact-ef6f54c1-eb45-4956-b8cd-1be82ad665f2.xml
552
+ - test/stub_responses/records/contact-efdb3600-f233-42e2-8f18-ce7e2a95e4b1.xml
553
+ - test/stub_responses/records/contact-f7eca431-5c97-4d24-93fd-004bb8a6c644.xml
554
+ - test/stub_responses/records/contact-fb078879-5d6d-474f-825f-61dc90689349.xml
555
+ - test/stub_responses/records/contact-fc39b273-4aa2-4785-99ca-24672f6c0000.xml
556
+ - test/stub_responses/records/contact-fc9ec3a6-a2fe-4300-a8cb-ca8a0b3662e0.xml
557
+ - test/stub_responses/records/contact-fdf96102-7491-44b6-bf4d-7a77ff25f890.xml
558
+ - test/stub_responses/records/contact-fe61ead1-8afc-4f0b-beda-066620227aad.xml
559
+ - test/stub_responses/records/credit_note-371cd138-1e5c-4ec1-a8c6-a1c10e8bdab1.xml
560
+ - test/stub_responses/records/credit_note-3bffc09b-79f2-490d-b91b-c59b700b43a4.xml
561
+ - test/stub_responses/records/credit_note-43c678ee-f357-48e2-b192-b6e3634762f9.xml
562
+ - test/stub_responses/records/credit_note-482c018b-d329-4e05-9b4f-7a4cfc695aa0.xml
563
+ - test/stub_responses/records/credit_note-4f67130a-749a-4ee6-98b2-743adbc11245.xml
564
+ - test/stub_responses/records/credit_note-50e98404-2fba-4031-af67-8ba4bb227c44.xml
565
+ - test/stub_responses/records/credit_note-7df8949c-b71f-40c0-bbcf-39f2f450f286.xml
566
+ - test/stub_responses/records/credit_note-b356e488-2678-4be4-ad4b-d294df2d48d6.xml
567
+ - test/stub_responses/records/invoice-0032f627-3156-4d30-9b1c-4d3b994dc921.xml
568
+ - test/stub_responses/records/invoice-00c9511b-24b9-4190-a90a-8abf2fe9f4a0.xml
569
+ - test/stub_responses/records/invoice-024d7994-a26c-4c20-9894-13934840fc31.xml
570
+ - test/stub_responses/records/invoice-0e64a623-c2a1-446a-93ed-eb897f118cbc.xml
571
+ - test/stub_responses/records/invoice-15e88e57-2554-4496-a18e-eb3f5c622345.xml
572
+ - test/stub_responses/records/invoice-166f0588-d0ba-458c-b28a-8edd4c8fc463.xml
573
+ - test/stub_responses/records/invoice-1d1ba340-afa2-4f4c-8ff7-a147bda9a47b.xml
574
+ - test/stub_responses/records/invoice-290ef4c4-baec-492b-b4dd-c102826470ae.xml
575
+ - test/stub_responses/records/invoice-30a87092-31b5-4a2c-831e-327486533dd2.xml
576
+ - test/stub_responses/records/invoice-30dbd181-72a8-43df-b392-4241bf43d5fc.xml
577
+ - test/stub_responses/records/invoice-33e4123e-7cdd-4f05-9a0a-eb8adeb2b868.xml
578
+ - test/stub_responses/records/invoice-387db692-26ac-47e6-b6cc-015343809bda.xml
579
+ - test/stub_responses/records/invoice-3b28bf11-ed2f-4cf4-8e9e-fcae730cc292.xml
580
+ - test/stub_responses/records/invoice-3fcb9847-b350-412e-ab90-7d9d774ad881.xml
581
+ - test/stub_responses/records/invoice-440613e4-4785-4eff-9ba1-c432816cf8c7.xml
582
+ - test/stub_responses/records/invoice-4602eda6-abe9-448e-b65f-ae6bea21f0eb.xml
583
+ - test/stub_responses/records/invoice-46441f63-873f-4cdc-a278-b8fe516f3abb.xml
584
+ - test/stub_responses/records/invoice-4ad1ec01-f4a3-41d7-bbb4-d2ab2fec8e65.xml
585
+ - test/stub_responses/records/invoice-4b9afceb-f7c7-4e64-8aac-7b009971fd52.xml
586
+ - test/stub_responses/records/invoice-4edbf6d5-4e92-43af-bedd-7effc0b86833.xml
587
+ - test/stub_responses/records/invoice-4fad1af2-b871-4ac5-a15a-3c5e32d2e2c4.xml
588
+ - test/stub_responses/records/invoice-52ee4d67-cae4-462c-adb2-182c39017f3d.xml
589
+ - test/stub_responses/records/invoice-54585f46-c1a0-4432-bd4f-c1fae2fba59b.xml
590
+ - test/stub_responses/records/invoice-5613938b-9e27-472e-92ae-3b038b669d10.xml
591
+ - test/stub_responses/records/invoice-5aa9451d-95d1-4f95-a966-bbab2573f71c.xml
592
+ - test/stub_responses/records/invoice-5aadcd34-01a9-4b8d-a2bb-d7cc1de9fa45.xml
593
+ - test/stub_responses/records/invoice-5f6deadf-36a2-495a-9980-ceb11e8af9a9.xml
594
+ - test/stub_responses/records/invoice-625ffe1b-f5d8-438e-a376-981de5f5a733.xml
595
+ - test/stub_responses/records/invoice-64cd559e-8e03-46af-b461-8555285cee71.xml
596
+ - test/stub_responses/records/invoice-666f8dbb-bc9a-476c-8ec4-4665d7f83190.xml
597
+ - test/stub_responses/records/invoice-66fbe37f-49b1-43fd-97ed-85114022cd2f.xml
598
+ - test/stub_responses/records/invoice-673dd7cc-beb7-4697-83d4-0c47cb400cc2.xml
599
+ - test/stub_responses/records/invoice-69fc971e-9b37-41c5-9c87-174330f22343.xml
600
+ - test/stub_responses/records/invoice-70e6db69-e5a4-42c7-a397-aa3212c2945f.xml
601
+ - test/stub_responses/records/invoice-762aa45d-4632-45b5-8087-b4f47690665e.xml
602
+ - test/stub_responses/records/invoice-766d1289-b440-4675-a656-1a0612ecac77.xml
603
+ - test/stub_responses/records/invoice-76bcb361-f93b-4513-b312-5a4af306d276.xml
604
+ - test/stub_responses/records/invoice-76e3f056-479f-417c-a72b-f3d767899b87.xml
605
+ - test/stub_responses/records/invoice-77b338ef-ecc0-4b95-a0d7-2617b0054611.xml
606
+ - test/stub_responses/records/invoice-7be9956d-5316-4f6b-a66a-d355b3f159b2.xml
607
+ - test/stub_responses/records/invoice-7dae876a-b424-436b-a4e6-17b3fdeec80c.xml
608
+ - test/stub_responses/records/invoice-7e862d93-8dab-4856-8b0c-d844e09d750f.xml
609
+ - test/stub_responses/records/invoice-803f70b0-56d9-4157-9787-41df271777a0.xml
610
+ - test/stub_responses/records/invoice-86102312-aa3f-438c-9938-6840f4d8dda6.xml
611
+ - test/stub_responses/records/invoice-8694c9c5-7097-4449-a708-b8c1982921a4.xml
612
+ - test/stub_responses/records/invoice-86d6e00f-ef56-49f7-9a54-796ccd5ca057.xml
613
+ - test/stub_responses/records/invoice-88e77f0f-54a5-4efc-a979-7e22223cc4d7.xml
614
+ - test/stub_responses/records/invoice-8b0ccb6a-d9b7-4da5-8360-ef7fb157b5aa.xml
615
+ - test/stub_responses/records/invoice-935fc854-8037-4111-8d91-993010c331cc.xml
616
+ - test/stub_responses/records/invoice-95ef3000-c764-4ba9-a66a-b6e2d161f839.xml
617
+ - test/stub_responses/records/invoice-962ef33f-c9d2-4602-9b9f-93a02bea23b3.xml
618
+ - test/stub_responses/records/invoice-9868b472-1983-48e9-8edf-7e81ddf2c03a.xml
619
+ - test/stub_responses/records/invoice-9a448e9b-a9fa-4a8b-98f5-6dc892a37374.xml
620
+ - test/stub_responses/records/invoice-a1d04a14-96a8-4067-a0ff-8136990a354f.xml
621
+ - test/stub_responses/records/invoice-a3bc62ef-f11b-4a9c-a4f9-a342bda371b5.xml
622
+ - test/stub_responses/records/invoice-a6894ca0-60ee-4d45-9dd4-b44fcba46ec5.xml
623
+ - test/stub_responses/records/invoice-a77268ce-74b2-483d-a2b3-70dbdc9e49d2.xml
624
+ - test/stub_responses/records/invoice-a9f765e6-b9bc-4505-a47b-fb3ecb327e7b.xml
625
+ - test/stub_responses/records/invoice-aa0173af-8707-4e7f-8dde-4c7a357bd312.xml
626
+ - test/stub_responses/records/invoice-ab63738a-370a-43a5-bfa3-620d684e66d0.xml
627
+ - test/stub_responses/records/invoice-b0344791-5a8a-40dd-a208-d99a461a6c10.xml
628
+ - test/stub_responses/records/invoice-b1e53910-473c-46a3-b3cb-38ece571220e.xml
629
+ - test/stub_responses/records/invoice-b2c02d0b-41a8-4d4d-97d7-014c78b3547d.xml
630
+ - test/stub_responses/records/invoice-b75b3928-ab72-4424-8b93-9cdbbde4cd72.xml
631
+ - test/stub_responses/records/invoice-bcd8a71f-aa31-4d0f-8a01-13ea26363ddf.xml
632
+ - test/stub_responses/records/invoice-bfbb7c45-de02-45e7-b065-d9863ecfb0d8.xml
633
+ - test/stub_responses/records/invoice-c12aff7e-12bf-4185-8702-460929f19674.xml
634
+ - test/stub_responses/records/invoice-c3380b96-976d-4b3e-8b26-8d01eb6a3742.xml
635
+ - test/stub_responses/records/invoice-c963f2b0-cbe1-4abd-9ccc-7e512c942068.xml
636
+ - test/stub_responses/records/invoice-cba46b29-3788-4158-b668-ab10160ccbfe.xml
637
+ - test/stub_responses/records/invoice-d62646b9-d0a9-4fdb-9561-756a8b7eba45.xml
638
+ - test/stub_responses/records/invoice-dba2f021-f149-4191-a126-5351d587ab0e.xml
639
+ - test/stub_responses/records/invoice-de5d9c29-21b3-4342-958b-ed72c4bd7ab0.xml
640
+ - test/stub_responses/records/invoice-e3d96555-2876-4364-a46a-7551a4f52611.xml
641
+ - test/stub_responses/records/invoice-e4a0afbd-aea0-450b-ae23-0ce921e84a77.xml
642
+ - test/stub_responses/records/invoice-e9cb9ecb-58ef-43a8-bd20-69a85338142d.xml
643
+ - test/stub_responses/records/invoice-ec9a6f67-7128-4a63-8ba3-5e516f455f9b.xml
644
+ - test/stub_responses/records/invoice-ed0f2587-84fc-4aef-bc4b-b1a262e24484.xml
645
+ - test/stub_responses/records/invoice-f362ca53-8ade-4047-865a-bb64bee5863d.xml
646
+ - test/stub_responses/records/invoice-f571c38b-5be1-41e1-ad5a-ff6184284beb.xml
647
+ - test/stub_responses/records/invoice-f5832195-5cd3-4660-ad3f-b73d9c64f263.xml
648
+ - test/stub_responses/records/invoice-f9c857eb-64cd-4235-a078-d04b52c77ea7.xml
649
+ - test/stub_responses/records/manual_journal-4765d07b-aa03-4e56-9166-50661958c864.xml
650
+ - test/stub_responses/records/manual_journal-53fc5558-5b76-4ecd-ae5c-c4af3ccde87c.xml
651
+ - test/stub_responses/records/manual_journal-bb6cfcfc-4500-4475-bd3a-93ee512428e0.xml
652
+ - test/stub_responses/records/manual_journal-f00a355b-7374-445c-886b-0437bea4095c.xml
653
+ - test/stub_responses/records/prepayment-7d3619b1-82cc-405b-8f44-9d4f9a787a8a.xml
654
+ - test/stub_responses/records/repeating_invoice-ad3550bc-1ae0-45c0-a782-48c6d2061127.xml
655
+ - test/stub_responses/refresh_responses.rb
656
+ - test/stub_responses/repeating_invoices.xml
657
+ - test/stub_responses/reports/trial_balance.xml
658
+ - test/stub_responses/tax_rates.xml
659
+ - test/stub_responses/token_expired
660
+ - test/stub_responses/tracking_categories.xml
661
+ - test/stub_responses/unknown_error.xml
662
+ - test/stub_responses/users.xml
663
+ - test/test_helper.rb
664
+ - test/unit/generic_application_test.rb
665
+ - test/unit/http_test.rb
666
+ - test/unit/models/address_test.rb
667
+ - test/unit/models/bank_transaction_model_parsing_test.rb
668
+ - test/unit/models/bank_transaction_test.rb
669
+ - test/unit/models/bank_transaction_validation_test.rb
670
+ - test/unit/models/contact_test.rb
671
+ - test/unit/models/credit_note_test.rb
672
+ - test/unit/models/employee_test.rb
673
+ - test/unit/models/invoice_test.rb
674
+ - test/unit/models/journal_line_test.rb
675
+ - test/unit/models/journal_test.rb
676
+ - test/unit/models/line_item_sum_test.rb
677
+ - test/unit/models/line_item_test.rb
678
+ - test/unit/models/manual_journal_test.rb
679
+ - test/unit/models/organisation_test.rb
680
+ - test/unit/models/payment_service_test.rb
681
+ - test/unit/models/phone_test.rb
682
+ - test/unit/models/prepayment_test.rb
683
+ - test/unit/models/repeating_invoice_test.rb
684
+ - test/unit/models/tax_rate_test.rb
685
+ - test/unit/oauth2_test.rb
686
+ - test/unit/oauth_config_test.rb
687
+ - test/unit/oauth_test.rb
688
+ - test/unit/private_application_test.rb
689
+ - test/unit/record/base_model_test.rb
690
+ - test/unit/record/base_test.rb
691
+ - test/unit/record/block_validator_test.rb
692
+ - test/unit/record/connection_test.rb
693
+ - test/unit/record/model_definition_test.rb
694
+ - test/unit/record/parse_params_test.rb
695
+ - test/unit/record/parse_where_hash_test.rb
696
+ - test/unit/record/record_association_test.rb
697
+ - test/unit/record/validators_test.rb
698
+ - test/unit/record_definition_test.rb
699
+ - test/unit/report_definition_test.rb
700
+ - test/unit/report_test.rb
701
+ - test/unit_test_helper.rb
702
+ homepage: http://github.com/dbvnz/xeroizer-3-pre-beta
703
+ licenses:
704
+ - MIT
705
+ metadata:
706
+ bug_tracker_uri: https://github.com/waynerobinson/xeroizer/issues
707
+ changelog_uri: https://github.com/waynerobinson/xeroizer/releases
708
+ source_code_uri: https://github.com/waynerobinson/xeroizer
709
+ documentation_uri: https://developer.xero.com/documentation/
710
+ mailing_list_uri: https://developer.xero.com/subscribe-to-the-xero-api-developer-mailing-list
711
+ post_install_message:
712
+ rdoc_options: []
713
+ require_paths:
714
+ - lib
715
+ required_ruby_version: !ruby/object:Gem::Requirement
716
+ requirements:
717
+ - - ">="
718
+ - !ruby/object:Gem::Version
719
+ version: '0'
720
+ required_rubygems_version: !ruby/object:Gem::Requirement
721
+ requirements:
722
+ - - ">"
723
+ - !ruby/object:Gem::Version
724
+ version: 1.3.1
725
+ requirements: []
726
+ rubygems_version: 3.0.3
727
+ signing_key:
728
+ specification_version: 4
729
+ summary: Do not use this forked gem. Fork of Ruby Library for Xero accounting API.
730
+ Do not use this forked gem.
731
+ test_files:
732
+ - test/acceptance/about_creating_bank_transactions_test.rb
733
+ - test/acceptance/about_creating_prepayment_test.rb
734
+ - test/acceptance/about_fetching_bank_transactions_test.rb
735
+ - test/acceptance/about_online_invoice_test.rb
736
+ - test/acceptance/acceptance_test.rb
737
+ - test/acceptance/bank_transaction_reference_data.rb
738
+ - test/acceptance/bank_transfer_test.rb
739
+ - test/acceptance/bulk_operations_test.rb
740
+ - test/acceptance/connections_test.rb
741
+ - test/stub_responses/accounts.xml
742
+ - test/stub_responses/api_exception.xml
743
+ - test/stub_responses/bad_request.json
744
+ - test/stub_responses/bogus_oauth_error
745
+ - test/stub_responses/branding_themes.xml
746
+ - test/stub_responses/connections.json
747
+ - test/stub_responses/contact.xml
748
+ - test/stub_responses/contact_with_details.xml
749
+ - test/stub_responses/contacts.xml
750
+ - test/stub_responses/create_credit_note.xml
751
+ - test/stub_responses/create_invoice.xml
752
+ - test/stub_responses/credit_note.xml
753
+ - test/stub_responses/credit_note_not_found_error.xml
754
+ - test/stub_responses/credit_notes.xml
755
+ - test/stub_responses/currencies.xml
756
+ - test/stub_responses/employees.xml
757
+ - test/stub_responses/expired_oauth2_token.json
758
+ - test/stub_responses/generic_response_error.json
759
+ - test/stub_responses/invalid_api_key_error.xml
760
+ - test/stub_responses/invalid_consumer_key
761
+ - test/stub_responses/invalid_oauth2_request_token.json
762
+ - test/stub_responses/invalid_request_token
763
+ - test/stub_responses/invalid_tenant_header.json
764
+ - test/stub_responses/invoice.xml
765
+ - test/stub_responses/invoice_not_found_error.xml
766
+ - test/stub_responses/invoices.xml
767
+ - test/stub_responses/items.xml
768
+ - test/stub_responses/manual_journal.xml
769
+ - test/stub_responses/manual_journals.xml
770
+ - test/stub_responses/nonce_used
771
+ - test/stub_responses/object_not_found.json
772
+ - test/stub_responses/organisation.xml
773
+ - test/stub_responses/organisations.xml
774
+ - test/stub_responses/payment_service.xml
775
+ - test/stub_responses/payments.xml
776
+ - test/stub_responses/prepayments.xml
777
+ - test/stub_responses/rate_limit_exceeded
778
+ - test/stub_responses/records/contact-043892a1-aef1-4c18-88d8-b8ccb6d31466.xml
779
+ - test/stub_responses/records/contact-09664078-efe2-4a88-89a5-67eac9b0047b.xml
780
+ - test/stub_responses/records/contact-0a4cf37b-a1a8-4753-9ee2-f9207f63a8ff.xml
781
+ - test/stub_responses/records/contact-0e74f929-11b9-4255-a035-1fdfe573e676.xml
782
+ - test/stub_responses/records/contact-0f471ca5-15c9-405e-a1b9-7cc35194b673.xml
783
+ - test/stub_responses/records/contact-13cd4c47-baa6-4f07-93f6-6442310df4bf.xml
784
+ - test/stub_responses/records/contact-158a2667-82ee-43bf-8f33-a6cc9524092d.xml
785
+ - test/stub_responses/records/contact-17465072-6fa3-40bf-bc42-97765d9e1bea.xml
786
+ - test/stub_responses/records/contact-1975b0ed-b7ba-4c61-bae8-2aa6d78b0dee.xml
787
+ - test/stub_responses/records/contact-1b2be6e9-8d58-4da9-aaf8-4fe5471b653c.xml
788
+ - test/stub_responses/records/contact-1c40da58-fe1d-4e97-b729-b2abdae94d9e.xml
789
+ - test/stub_responses/records/contact-258176a5-c622-4394-9c94-6f88c3ea12e5.xml
790
+ - test/stub_responses/records/contact-299dd3a0-a417-4a37-8a04-2f55e91963e5.xml
791
+ - test/stub_responses/records/contact-2be39278-5154-4ed1-8eb0-676f25acfc66.xml
792
+ - test/stub_responses/records/contact-2e58cff6-488c-4a32-884b-baf848010229.xml
793
+ - test/stub_responses/records/contact-2faccd41-935e-40aa-b74e-e2fc28ac34c3.xml
794
+ - test/stub_responses/records/contact-31af01e7-2ca7-45b9-a500-b02db996568e.xml
795
+ - test/stub_responses/records/contact-344f1113-a25b-4344-b82e-bedeacc17c8e.xml
796
+ - test/stub_responses/records/contact-3e776c4b-ea9e-4bb1-96be-6b0c7a71a37f.xml
797
+ - test/stub_responses/records/contact-3fc1fc6c-e5ff-4e40-b6f3-7eb535637d87.xml
798
+ - test/stub_responses/records/contact-416ab20c-5357-4beb-a740-e8d175d71efb.xml
799
+ - test/stub_responses/records/contact-41a42865-f15a-4fa1-b643-47877608f557.xml
800
+ - test/stub_responses/records/contact-42771b60-19a7-4692-af81-dd9f9b9362d4.xml
801
+ - test/stub_responses/records/contact-451ceb28-9610-44c9-8f35-3225482f2413.xml
802
+ - test/stub_responses/records/contact-4ab343ad-1ebb-4afe-9d48-1814a93c2081.xml
803
+ - test/stub_responses/records/contact-4bb77692-42d4-4565-85a0-8849eb85e039.xml
804
+ - test/stub_responses/records/contact-4dec292f-3ab7-46a8-83e4-5fb5eac42c7f.xml
805
+ - test/stub_responses/records/contact-4e2f192e-8397-4d4d-97ca-a4fc5ac531bf.xml
806
+ - test/stub_responses/records/contact-5188c17c-7786-4436-ad6e-9da2997386d0.xml
807
+ - test/stub_responses/records/contact-52442753-b1c4-40b7-9b79-c33997de5837.xml
808
+ - test/stub_responses/records/contact-565acaa9-e7f3-4fbf-80c3-16b081ddae10.xml
809
+ - test/stub_responses/records/contact-571a2414-81ff-4f8f-8498-d91d83793131.xml
810
+ - test/stub_responses/records/contact-58697449-85ef-46ae-83fc-6a9446f037fb.xml
811
+ - test/stub_responses/records/contact-58bf2ae3-5144-4628-8de2-e165ac2bcdc6.xml
812
+ - test/stub_responses/records/contact-5d41dafd-eb7e-42c1-bd5a-ba3be1da0960.xml
813
+ - test/stub_responses/records/contact-5f005a09-5ce4-4fb4-8096-e69c18be636e.xml
814
+ - test/stub_responses/records/contact-60d578d9-3e10-4aef-b5dc-9d9fd60a3633.xml
815
+ - test/stub_responses/records/contact-62392126-dba4-4a75-b907-5875ebf75259.xml
816
+ - test/stub_responses/records/contact-642c7fb5-e8e5-48e1-a710-39a18c6c3217.xml
817
+ - test/stub_responses/records/contact-64aebf9c-bb89-4b38-b99b-405bd1ece6fd.xml
818
+ - test/stub_responses/records/contact-64eedbc9-1fa0-485a-837f-705f23188161.xml
819
+ - test/stub_responses/records/contact-65e96c9f-1595-4653-9a8a-2a36d49223c2.xml
820
+ - test/stub_responses/records/contact-67d26b93-ccb4-4890-9bf1-284b70ea755d.xml
821
+ - test/stub_responses/records/contact-69d3e538-44b3-4e00-a5f6-7dddcb6e0656.xml
822
+ - test/stub_responses/records/contact-6a8450bc-f81a-4bb0-a8f6-aa4afe9497c7.xml
823
+ - test/stub_responses/records/contact-6c70e424-41d6-4b9b-af3e-b3a9f3589106.xml
824
+ - test/stub_responses/records/contact-6de0b0cf-560c-4503-aab3-e1543c329deb.xml
825
+ - test/stub_responses/records/contact-72dd6a02-396e-42a2-a4d6-cc3fa75dfece.xml
826
+ - test/stub_responses/records/contact-755f1475-d255-43a8-bedc-5ea7fd26c71f.xml
827
+ - test/stub_responses/records/contact-78a9d0a0-3d8c-4f84-af3e-f260bf4a9dc0.xml
828
+ - test/stub_responses/records/contact-79aa39ca-22b0-42c2-9026-78757a29d665.xml
829
+ - test/stub_responses/records/contact-804f4140-5978-48fe-ba20-b56e5b834b18.xml
830
+ - test/stub_responses/records/contact-812d4f28-1681-4241-8e34-d15c5520ba35.xml
831
+ - test/stub_responses/records/contact-860b99a9-0958-4c8d-a98f-bb1f092b16bb.xml
832
+ - test/stub_responses/records/contact-87c8da45-97cc-46be-b170-398da0eacfb8.xml
833
+ - test/stub_responses/records/contact-8a154a19-6c6c-404b-bbc9-6deae2d18251.xml
834
+ - test/stub_responses/records/contact-8bb6931d-2865-44e9-9a23-ed1fb9c7a46c.xml
835
+ - test/stub_responses/records/contact-936c9759-01da-4063-b472-424ab9f48212.xml
836
+ - test/stub_responses/records/contact-9d12a994-9640-4b75-95cc-3de1e9d0ef09.xml
837
+ - test/stub_responses/records/contact-9fe59245-1fbb-4157-93c3-dc97388f3746.xml
838
+ - test/stub_responses/records/contact-a06a7225-6f8a-4522-8400-c534dd43a16e.xml
839
+ - test/stub_responses/records/contact-a76a85fe-73a2-46fa-aba7-791f36103cdb.xml
840
+ - test/stub_responses/records/contact-a93b5f40-0346-4d21-9181-431e129911c0.xml
841
+ - test/stub_responses/records/contact-abf272dd-6b1d-4829-af88-c57bf55855e3.xml
842
+ - test/stub_responses/records/contact-ad24c33b-256b-4157-ad56-cbcf0e8db7b1.xml
843
+ - test/stub_responses/records/contact-b107129d-f4c9-438e-9573-64b778527f4a.xml
844
+ - test/stub_responses/records/contact-b233288a-aa26-4b26-9fc7-779d797dd56f.xml
845
+ - test/stub_responses/records/contact-b2b5333a-2546-4975-891f-d71a8a640d23.xml
846
+ - test/stub_responses/records/contact-b4d149bf-1823-4bd2-96da-9032388c9686.xml
847
+ - test/stub_responses/records/contact-b78d4fd1-4306-4d83-a0b9-61458d1c53a2.xml
848
+ - test/stub_responses/records/contact-b7d108a8-d5f7-4f16-a7c9-26eaed98e8de.xml
849
+ - test/stub_responses/records/contact-baeed0f3-7989-4874-99b3-59f23032cb73.xml
850
+ - test/stub_responses/records/contact-bc51a3a1-b7f6-46ca-ac9e-19b87e6ca100.xml
851
+ - test/stub_responses/records/contact-be9f3aab-52f5-4d9c-94b4-87f7d9e5ee8b.xml
852
+ - test/stub_responses/records/contact-c135f994-01e4-427b-9e15-acfe8a477c16.xml
853
+ - test/stub_responses/records/contact-c14edf75-15e4-4a9c-86e4-f52e2fe7cfa4.xml
854
+ - test/stub_responses/records/contact-ca9b9abc-c2dc-4221-8101-31f464d314cc.xml
855
+ - test/stub_responses/records/contact-cc4db604-9ed8-4eef-8a29-51b5b70496a0.xml
856
+ - test/stub_responses/records/contact-cce9b044-be4a-43b3-9dc7-c027d8dd35b2.xml
857
+ - test/stub_responses/records/contact-d0cd2c4f-18a0-4f7c-a32a-2db00f29d298.xml
858
+ - test/stub_responses/records/contact-d6851dc2-9ed9-4515-bc0b-810b09c06a6a.xml
859
+ - test/stub_responses/records/contact-d6a384fb-f46f-41a3-8ac7-b7bc9e0b5efa.xml
860
+ - test/stub_responses/records/contact-d74e61cf-2ad0-4f0d-b9d1-6a808e3f70cf.xml
861
+ - test/stub_responses/records/contact-d9ab0f61-3b56-4e2b-be39-f33c11bd99e3.xml
862
+ - test/stub_responses/records/contact-dbb1f0b5-a71b-4458-8462-104acd0fec6b.xml
863
+ - test/stub_responses/records/contact-dd981bd6-40dd-496d-a282-bf7d3391b8b9.xml
864
+ - test/stub_responses/records/contact-e1826204-cc0a-42a5-a6d0-4b352d9d5953.xml
865
+ - test/stub_responses/records/contact-e2d955db-f366-42dd-87f7-fbdb4da2306f.xml
866
+ - test/stub_responses/records/contact-e32e2130-3d27-443a-8313-48fffa03cf53.xml
867
+ - test/stub_responses/records/contact-e3a68332-d322-4816-8678-73a537c8cd33.xml
868
+ - test/stub_responses/records/contact-e6ac76a3-ca32-4fa1-8ef9-6a4bf8b0ec2a.xml
869
+ - test/stub_responses/records/contact-e6ca965d-7c48-480e-be39-e847307f474a.xml
870
+ - test/stub_responses/records/contact-e77d1f20-2e8e-46ec-9a10-50335a216724.xml
871
+ - test/stub_responses/records/contact-e8b98c13-a424-41d2-ba0e-7b7621411e7a.xml
872
+ - test/stub_responses/records/contact-e8e9a2c2-3e7e-48ed-8528-c3d61b28f276.xml
873
+ - test/stub_responses/records/contact-eb43fcc6-87ec-4a0a-b243-d718bee4e2cb.xml
874
+ - test/stub_responses/records/contact-ef6f54c1-eb45-4956-b8cd-1be82ad665f2.xml
875
+ - test/stub_responses/records/contact-efdb3600-f233-42e2-8f18-ce7e2a95e4b1.xml
876
+ - test/stub_responses/records/contact-f7eca431-5c97-4d24-93fd-004bb8a6c644.xml
877
+ - test/stub_responses/records/contact-fb078879-5d6d-474f-825f-61dc90689349.xml
878
+ - test/stub_responses/records/contact-fc39b273-4aa2-4785-99ca-24672f6c0000.xml
879
+ - test/stub_responses/records/contact-fc9ec3a6-a2fe-4300-a8cb-ca8a0b3662e0.xml
880
+ - test/stub_responses/records/contact-fdf96102-7491-44b6-bf4d-7a77ff25f890.xml
881
+ - test/stub_responses/records/contact-fe61ead1-8afc-4f0b-beda-066620227aad.xml
882
+ - test/stub_responses/records/credit_note-371cd138-1e5c-4ec1-a8c6-a1c10e8bdab1.xml
883
+ - test/stub_responses/records/credit_note-3bffc09b-79f2-490d-b91b-c59b700b43a4.xml
884
+ - test/stub_responses/records/credit_note-43c678ee-f357-48e2-b192-b6e3634762f9.xml
885
+ - test/stub_responses/records/credit_note-482c018b-d329-4e05-9b4f-7a4cfc695aa0.xml
886
+ - test/stub_responses/records/credit_note-4f67130a-749a-4ee6-98b2-743adbc11245.xml
887
+ - test/stub_responses/records/credit_note-50e98404-2fba-4031-af67-8ba4bb227c44.xml
888
+ - test/stub_responses/records/credit_note-7df8949c-b71f-40c0-bbcf-39f2f450f286.xml
889
+ - test/stub_responses/records/credit_note-b356e488-2678-4be4-ad4b-d294df2d48d6.xml
890
+ - test/stub_responses/records/invoice-0032f627-3156-4d30-9b1c-4d3b994dc921.xml
891
+ - test/stub_responses/records/invoice-00c9511b-24b9-4190-a90a-8abf2fe9f4a0.xml
892
+ - test/stub_responses/records/invoice-024d7994-a26c-4c20-9894-13934840fc31.xml
893
+ - test/stub_responses/records/invoice-0e64a623-c2a1-446a-93ed-eb897f118cbc.xml
894
+ - test/stub_responses/records/invoice-15e88e57-2554-4496-a18e-eb3f5c622345.xml
895
+ - test/stub_responses/records/invoice-166f0588-d0ba-458c-b28a-8edd4c8fc463.xml
896
+ - test/stub_responses/records/invoice-1d1ba340-afa2-4f4c-8ff7-a147bda9a47b.xml
897
+ - test/stub_responses/records/invoice-290ef4c4-baec-492b-b4dd-c102826470ae.xml
898
+ - test/stub_responses/records/invoice-30a87092-31b5-4a2c-831e-327486533dd2.xml
899
+ - test/stub_responses/records/invoice-30dbd181-72a8-43df-b392-4241bf43d5fc.xml
900
+ - test/stub_responses/records/invoice-33e4123e-7cdd-4f05-9a0a-eb8adeb2b868.xml
901
+ - test/stub_responses/records/invoice-387db692-26ac-47e6-b6cc-015343809bda.xml
902
+ - test/stub_responses/records/invoice-3b28bf11-ed2f-4cf4-8e9e-fcae730cc292.xml
903
+ - test/stub_responses/records/invoice-3fcb9847-b350-412e-ab90-7d9d774ad881.xml
904
+ - test/stub_responses/records/invoice-440613e4-4785-4eff-9ba1-c432816cf8c7.xml
905
+ - test/stub_responses/records/invoice-4602eda6-abe9-448e-b65f-ae6bea21f0eb.xml
906
+ - test/stub_responses/records/invoice-46441f63-873f-4cdc-a278-b8fe516f3abb.xml
907
+ - test/stub_responses/records/invoice-4ad1ec01-f4a3-41d7-bbb4-d2ab2fec8e65.xml
908
+ - test/stub_responses/records/invoice-4b9afceb-f7c7-4e64-8aac-7b009971fd52.xml
909
+ - test/stub_responses/records/invoice-4edbf6d5-4e92-43af-bedd-7effc0b86833.xml
910
+ - test/stub_responses/records/invoice-4fad1af2-b871-4ac5-a15a-3c5e32d2e2c4.xml
911
+ - test/stub_responses/records/invoice-52ee4d67-cae4-462c-adb2-182c39017f3d.xml
912
+ - test/stub_responses/records/invoice-54585f46-c1a0-4432-bd4f-c1fae2fba59b.xml
913
+ - test/stub_responses/records/invoice-5613938b-9e27-472e-92ae-3b038b669d10.xml
914
+ - test/stub_responses/records/invoice-5aa9451d-95d1-4f95-a966-bbab2573f71c.xml
915
+ - test/stub_responses/records/invoice-5aadcd34-01a9-4b8d-a2bb-d7cc1de9fa45.xml
916
+ - test/stub_responses/records/invoice-5f6deadf-36a2-495a-9980-ceb11e8af9a9.xml
917
+ - test/stub_responses/records/invoice-625ffe1b-f5d8-438e-a376-981de5f5a733.xml
918
+ - test/stub_responses/records/invoice-64cd559e-8e03-46af-b461-8555285cee71.xml
919
+ - test/stub_responses/records/invoice-666f8dbb-bc9a-476c-8ec4-4665d7f83190.xml
920
+ - test/stub_responses/records/invoice-66fbe37f-49b1-43fd-97ed-85114022cd2f.xml
921
+ - test/stub_responses/records/invoice-673dd7cc-beb7-4697-83d4-0c47cb400cc2.xml
922
+ - test/stub_responses/records/invoice-69fc971e-9b37-41c5-9c87-174330f22343.xml
923
+ - test/stub_responses/records/invoice-70e6db69-e5a4-42c7-a397-aa3212c2945f.xml
924
+ - test/stub_responses/records/invoice-762aa45d-4632-45b5-8087-b4f47690665e.xml
925
+ - test/stub_responses/records/invoice-766d1289-b440-4675-a656-1a0612ecac77.xml
926
+ - test/stub_responses/records/invoice-76bcb361-f93b-4513-b312-5a4af306d276.xml
927
+ - test/stub_responses/records/invoice-76e3f056-479f-417c-a72b-f3d767899b87.xml
928
+ - test/stub_responses/records/invoice-77b338ef-ecc0-4b95-a0d7-2617b0054611.xml
929
+ - test/stub_responses/records/invoice-7be9956d-5316-4f6b-a66a-d355b3f159b2.xml
930
+ - test/stub_responses/records/invoice-7dae876a-b424-436b-a4e6-17b3fdeec80c.xml
931
+ - test/stub_responses/records/invoice-7e862d93-8dab-4856-8b0c-d844e09d750f.xml
932
+ - test/stub_responses/records/invoice-803f70b0-56d9-4157-9787-41df271777a0.xml
933
+ - test/stub_responses/records/invoice-86102312-aa3f-438c-9938-6840f4d8dda6.xml
934
+ - test/stub_responses/records/invoice-8694c9c5-7097-4449-a708-b8c1982921a4.xml
935
+ - test/stub_responses/records/invoice-86d6e00f-ef56-49f7-9a54-796ccd5ca057.xml
936
+ - test/stub_responses/records/invoice-88e77f0f-54a5-4efc-a979-7e22223cc4d7.xml
937
+ - test/stub_responses/records/invoice-8b0ccb6a-d9b7-4da5-8360-ef7fb157b5aa.xml
938
+ - test/stub_responses/records/invoice-935fc854-8037-4111-8d91-993010c331cc.xml
939
+ - test/stub_responses/records/invoice-95ef3000-c764-4ba9-a66a-b6e2d161f839.xml
940
+ - test/stub_responses/records/invoice-962ef33f-c9d2-4602-9b9f-93a02bea23b3.xml
941
+ - test/stub_responses/records/invoice-9868b472-1983-48e9-8edf-7e81ddf2c03a.xml
942
+ - test/stub_responses/records/invoice-9a448e9b-a9fa-4a8b-98f5-6dc892a37374.xml
943
+ - test/stub_responses/records/invoice-a1d04a14-96a8-4067-a0ff-8136990a354f.xml
944
+ - test/stub_responses/records/invoice-a3bc62ef-f11b-4a9c-a4f9-a342bda371b5.xml
945
+ - test/stub_responses/records/invoice-a6894ca0-60ee-4d45-9dd4-b44fcba46ec5.xml
946
+ - test/stub_responses/records/invoice-a77268ce-74b2-483d-a2b3-70dbdc9e49d2.xml
947
+ - test/stub_responses/records/invoice-a9f765e6-b9bc-4505-a47b-fb3ecb327e7b.xml
948
+ - test/stub_responses/records/invoice-aa0173af-8707-4e7f-8dde-4c7a357bd312.xml
949
+ - test/stub_responses/records/invoice-ab63738a-370a-43a5-bfa3-620d684e66d0.xml
950
+ - test/stub_responses/records/invoice-b0344791-5a8a-40dd-a208-d99a461a6c10.xml
951
+ - test/stub_responses/records/invoice-b1e53910-473c-46a3-b3cb-38ece571220e.xml
952
+ - test/stub_responses/records/invoice-b2c02d0b-41a8-4d4d-97d7-014c78b3547d.xml
953
+ - test/stub_responses/records/invoice-b75b3928-ab72-4424-8b93-9cdbbde4cd72.xml
954
+ - test/stub_responses/records/invoice-bcd8a71f-aa31-4d0f-8a01-13ea26363ddf.xml
955
+ - test/stub_responses/records/invoice-bfbb7c45-de02-45e7-b065-d9863ecfb0d8.xml
956
+ - test/stub_responses/records/invoice-c12aff7e-12bf-4185-8702-460929f19674.xml
957
+ - test/stub_responses/records/invoice-c3380b96-976d-4b3e-8b26-8d01eb6a3742.xml
958
+ - test/stub_responses/records/invoice-c963f2b0-cbe1-4abd-9ccc-7e512c942068.xml
959
+ - test/stub_responses/records/invoice-cba46b29-3788-4158-b668-ab10160ccbfe.xml
960
+ - test/stub_responses/records/invoice-d62646b9-d0a9-4fdb-9561-756a8b7eba45.xml
961
+ - test/stub_responses/records/invoice-dba2f021-f149-4191-a126-5351d587ab0e.xml
962
+ - test/stub_responses/records/invoice-de5d9c29-21b3-4342-958b-ed72c4bd7ab0.xml
963
+ - test/stub_responses/records/invoice-e3d96555-2876-4364-a46a-7551a4f52611.xml
964
+ - test/stub_responses/records/invoice-e4a0afbd-aea0-450b-ae23-0ce921e84a77.xml
965
+ - test/stub_responses/records/invoice-e9cb9ecb-58ef-43a8-bd20-69a85338142d.xml
966
+ - test/stub_responses/records/invoice-ec9a6f67-7128-4a63-8ba3-5e516f455f9b.xml
967
+ - test/stub_responses/records/invoice-ed0f2587-84fc-4aef-bc4b-b1a262e24484.xml
968
+ - test/stub_responses/records/invoice-f362ca53-8ade-4047-865a-bb64bee5863d.xml
969
+ - test/stub_responses/records/invoice-f571c38b-5be1-41e1-ad5a-ff6184284beb.xml
970
+ - test/stub_responses/records/invoice-f5832195-5cd3-4660-ad3f-b73d9c64f263.xml
971
+ - test/stub_responses/records/invoice-f9c857eb-64cd-4235-a078-d04b52c77ea7.xml
972
+ - test/stub_responses/records/manual_journal-4765d07b-aa03-4e56-9166-50661958c864.xml
973
+ - test/stub_responses/records/manual_journal-53fc5558-5b76-4ecd-ae5c-c4af3ccde87c.xml
974
+ - test/stub_responses/records/manual_journal-bb6cfcfc-4500-4475-bd3a-93ee512428e0.xml
975
+ - test/stub_responses/records/manual_journal-f00a355b-7374-445c-886b-0437bea4095c.xml
976
+ - test/stub_responses/records/prepayment-7d3619b1-82cc-405b-8f44-9d4f9a787a8a.xml
977
+ - test/stub_responses/records/repeating_invoice-ad3550bc-1ae0-45c0-a782-48c6d2061127.xml
978
+ - test/stub_responses/refresh_responses.rb
979
+ - test/stub_responses/repeating_invoices.xml
980
+ - test/stub_responses/reports/trial_balance.xml
981
+ - test/stub_responses/tax_rates.xml
982
+ - test/stub_responses/token_expired
983
+ - test/stub_responses/tracking_categories.xml
984
+ - test/stub_responses/unknown_error.xml
985
+ - test/stub_responses/users.xml
986
+ - test/test_helper.rb
987
+ - test/unit/generic_application_test.rb
988
+ - test/unit/http_test.rb
989
+ - test/unit/models/address_test.rb
990
+ - test/unit/models/bank_transaction_model_parsing_test.rb
991
+ - test/unit/models/bank_transaction_test.rb
992
+ - test/unit/models/bank_transaction_validation_test.rb
993
+ - test/unit/models/contact_test.rb
994
+ - test/unit/models/credit_note_test.rb
995
+ - test/unit/models/employee_test.rb
996
+ - test/unit/models/invoice_test.rb
997
+ - test/unit/models/journal_line_test.rb
998
+ - test/unit/models/journal_test.rb
999
+ - test/unit/models/line_item_sum_test.rb
1000
+ - test/unit/models/line_item_test.rb
1001
+ - test/unit/models/manual_journal_test.rb
1002
+ - test/unit/models/organisation_test.rb
1003
+ - test/unit/models/payment_service_test.rb
1004
+ - test/unit/models/phone_test.rb
1005
+ - test/unit/models/prepayment_test.rb
1006
+ - test/unit/models/repeating_invoice_test.rb
1007
+ - test/unit/models/tax_rate_test.rb
1008
+ - test/unit/oauth2_test.rb
1009
+ - test/unit/oauth_config_test.rb
1010
+ - test/unit/oauth_test.rb
1011
+ - test/unit/private_application_test.rb
1012
+ - test/unit/record/base_model_test.rb
1013
+ - test/unit/record/base_test.rb
1014
+ - test/unit/record/block_validator_test.rb
1015
+ - test/unit/record/connection_test.rb
1016
+ - test/unit/record/model_definition_test.rb
1017
+ - test/unit/record/parse_params_test.rb
1018
+ - test/unit/record/parse_where_hash_test.rb
1019
+ - test/unit/record/record_association_test.rb
1020
+ - test/unit/record/validators_test.rb
1021
+ - test/unit/record_definition_test.rb
1022
+ - test/unit/report_definition_test.rb
1023
+ - test/unit/report_test.rb
1024
+ - test/unit_test_helper.rb