formalizer 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (452) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +207 -0
  4. data/Rakefile +34 -0
  5. data/lib/formalizer/errors.rb +15 -0
  6. data/lib/formalizer/form.rb +127 -0
  7. data/lib/formalizer/form_field.rb +322 -0
  8. data/lib/formalizer/formalizer.rb +253 -0
  9. data/lib/formalizer/utils.rb +61 -0
  10. data/lib/formalizer/version.rb +3 -0
  11. data/lib/formalizer.rb +5 -0
  12. data/lib/tasks/formalizer_tasks.rake +4 -0
  13. data/test/dummy/Gemfile +5 -0
  14. data/test/dummy/Gemfile.lock +12 -0
  15. data/test/dummy/README.rdoc +28 -0
  16. data/test/dummy/Rakefile +6 -0
  17. data/test/dummy/app/assets/images/acme_logo.jpg +0 -0
  18. data/test/dummy/app/assets/images/formalizer.png +0 -0
  19. data/test/dummy/app/assets/javascripts/application.js +13 -0
  20. data/test/dummy/app/assets/javascripts/fill_details.js +2 -0
  21. data/test/dummy/app/assets/javascripts/home.js +2 -0
  22. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  23. data/test/dummy/app/assets/stylesheets/bootstrap_yeti.css +7109 -0
  24. data/test/dummy/app/assets/stylesheets/fill_details.css +4 -0
  25. data/test/dummy/app/assets/stylesheets/form.css +20 -0
  26. data/test/dummy/app/assets/stylesheets/home.css +4 -0
  27. data/test/dummy/app/controllers/about_controller.rb +6 -0
  28. data/test/dummy/app/controllers/application_controller.rb +5 -0
  29. data/test/dummy/app/controllers/demo_controller.rb +103 -0
  30. data/test/dummy/app/controllers/home_controller.rb +6 -0
  31. data/test/dummy/app/helpers/application_helper.rb +2 -0
  32. data/test/dummy/app/helpers/fill_details_helper.rb +2 -0
  33. data/test/dummy/app/helpers/home_helper.rb +2 -0
  34. data/test/dummy/app/views/about/show.html.erb +6 -0
  35. data/test/dummy/app/views/demo/index.html.erb +7 -0
  36. data/test/dummy/app/views/home/show.html.erb +22 -0
  37. data/test/dummy/app/views/layouts/application.html.erb +24 -0
  38. data/test/dummy/app/views/shared/_navbar.html.erb +16 -0
  39. data/test/dummy/bin/bundle +3 -0
  40. data/test/dummy/bin/rails +4 -0
  41. data/test/dummy/bin/rake +4 -0
  42. data/test/dummy/bin/setup +29 -0
  43. data/test/dummy/config/_formalizer.yml +102 -0
  44. data/test/dummy/config/alternative_invalid_config1.yml +41 -0
  45. data/test/dummy/config/alternative_invalid_config2.yml +1 -0
  46. data/test/dummy/config/alternative_valid_config.yml +42 -0
  47. data/test/dummy/config/application.rb +26 -0
  48. data/test/dummy/config/boot.rb +5 -0
  49. data/test/dummy/config/database.yml +25 -0
  50. data/test/dummy/config/environment.rb +5 -0
  51. data/test/dummy/config/environments/development.rb +41 -0
  52. data/test/dummy/config/environments/production.rb +79 -0
  53. data/test/dummy/config/environments/test.rb +42 -0
  54. data/test/dummy/config/form1.html +139 -0
  55. data/test/dummy/config/initializers/assets.rb +11 -0
  56. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  57. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  58. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  59. data/test/dummy/config/initializers/inflections.rb +16 -0
  60. data/test/dummy/config/initializers/mime_types.rb +4 -0
  61. data/test/dummy/config/initializers/session_store.rb +3 -0
  62. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  63. data/test/dummy/config/invalid_html_formalizer_tags_without_ids.html +5 -0
  64. data/test/dummy/config/invalid_html_no_formalizer_tags.html +5 -0
  65. data/test/dummy/config/locales/en.yml +23 -0
  66. data/test/dummy/config/routes.rb +7 -0
  67. data/test/dummy/config/secrets.yml +22 -0
  68. data/test/dummy/config.ru +4 -0
  69. data/test/dummy/db/development.sqlite3 +0 -0
  70. data/test/dummy/db/test.sqlite3 +0 -0
  71. data/test/dummy/log/development.log +7107 -0
  72. data/test/dummy/log/passenger.3000.log +2681 -0
  73. data/test/dummy/log/test.log +4830 -0
  74. data/test/dummy/passenger.3000.pid.lock +0 -0
  75. data/test/dummy/public/404.html +67 -0
  76. data/test/dummy/public/422.html +67 -0
  77. data/test/dummy/public/500.html +66 -0
  78. data/test/dummy/public/favicon.ico +0 -0
  79. data/test/dummy/test/controllers/fill_details_controller_test.rb +7 -0
  80. data/test/dummy/test/controllers/home_controller_test.rb +7 -0
  81. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/-Z8-x8TP2IpXxzIQCnPJmwpJQLBA1vkQZIs-v5IqO1M.cache +1 -0
  82. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/0QhQ_r6EX-PaO37-YZcRkQsrNuiQ2lMZ78kOr9nizbo.cache +1 -0
  83. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/0gaoXk74LdRQaVC-V6RnHNTFukvBZK6P7TSCKGK3iB4.cache +0 -0
  84. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/0lmMGqilvmPepfDYe-P4TPj8HP55nK4OJgU_A7JN3vA.cache +2 -0
  85. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/10FjxP4BObnBgDu_BfPbcN8u9gBcUtffAu43bKi18OE.cache +2 -0
  86. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1E4iNysYJh97M_YQ2yLOmaIpv-TrGgZMuC1GG79zjPo.cache +1 -0
  87. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1LojJt0HPxdTxk8roqIik_rXQ4lXs1dds-NUPqBSLQ0.cache +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1TzpDaiXe-zq-W2i_uxXwiRngAIoS4lMkMV1YF_-Klw.cache +1 -0
  89. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1ZIYPPoIRMG1j1vxQhisia--vKTZrc14_GQdwEsFQsU.cache +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1ZylVP7ZDoGvLc-wMWjmTFaWqlB0BOGWbbESKK_O5zg.cache +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1zeTrAPOtYLg-JXxWQtphNiGAEZjECivNLOO2qHmZak.cache +1 -0
  92. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/29NJdbsFyjUzJAXIzHCoilXDeM55NW6O3cuuRoMir44.cache +1 -0
  93. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/2pIrDdq-LQAZYsU3rnabBAAF3KoaUqd-UddqjLj6tig.cache +2 -0
  94. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/2t9hRAvHgc_FJbWXTMo1S0F6rT4U9Doze_q5dKJ-fIQ.cache +0 -0
  95. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/30olZHQQ7WZTO-OTXByCyV6vQvD-jRNTxeLSKLexBZw.cache +0 -0
  96. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/3E_mWo1orMy9qt95H9QfIEPkUy47lB7SEZHViXEsFqI.cache +2 -0
  97. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/3WbrpN7fxH07Jo9_3u6T1QT3aSs8f0GtBY-tXlyMFGU.cache +1 -0
  98. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/3c3Nfn_SaD6FvHwA8eTWTzPRLztBsPQsm4lP92p1Zgg.cache +2 -0
  99. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/4Qy3ua1ZxecQRiTw0N2X_g5fnog79TcUHR2OME4vIPE.cache +0 -0
  100. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/50srOL95A3hQiQ4Qny9El7UtyBykNpLQqwIDQoVhHk4.cache +0 -0
  101. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5BIJNXi8oXVWoLSkdp4lc3Th8PwMrk4bvez8RTabMuc.cache +1 -0
  102. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5GwtVhuOkq0utxLWUiTqEU3Onyx3OrVgux-7uDhK0Ew.cache +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +0 -0
  104. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5O2LYVux25geVSYTIjv2zA6Mm7Q7_wM0QxCacxCn1A8.cache +2 -0
  105. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5Pgc4M14GZWEeVTkkd04jQEJpdqVAmyqi9glF6vb73I.cache +1 -0
  106. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5QCJCh3vy-_xBXSLbJhjpsNpLjMQmgHC7KlC5EBldL8.cache +1 -0
  107. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5QPZLgIEGL9Ktghpx_Usd-LEixQ1JmmMc8h5mpkosD0.cache +0 -0
  108. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5R-MvIULCjePz0cM8aamgI1CGUxcfDuzJlmIivuhkuk.cache +2 -0
  109. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5zHbuyCXcodrnyA9RJb5M2roj2pmi7Vak-F3kb7AGxs.cache +1 -0
  110. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/6E0UuAMaaJmKYV4WHiNr1cBWr-mwujiNLKJYbZBy5A0.cache +1 -0
  111. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/6EI0VFQ3N3P7AOjW8AEjrXZdSuCnCv-fpZ64e0bjynk.cache +3 -0
  112. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/7CXKpj5B6dzyBoSsGgu7moPco2r0i9PbwzVXo1lHozU.cache +2 -0
  113. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/7FxuwZmru_T0Zx8aNR3TleboQkZy5z3NeGNrwPzP7cY.cache +0 -0
  114. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/7Qzcd1UvRnkRnZ5b54SSviAKsURjRAGoaK5yTsg4MxA.cache +1 -0
  115. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/7aFBjL4if-asPUbvotQpxcJTzMgAX9LsHAQVCppeSXE.cache +1 -0
  116. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/7lvyiihvB0xNdKRsf1KPaqFm_3Mipw8d1db4V8lJteA.cache +0 -0
  117. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/813bj5I6yZb-wXefodCetOCKEDEL_2AbNx1a02m7-KQ.cache +1 -0
  118. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/8DY9xobqxlwyWnYa-twKg1BMFu42a1oOfvx2Zk8-QRg.cache +2 -0
  119. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/8kChD4u9SX9-EQY63SO0-ergLuOvDIf46vR60I3T0qg.cache +1 -0
  120. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/8rlj1JnFHejUL3raWFeliRWCPWCnJdn3UrlKHovKdbs.cache +1 -0
  121. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9BUi26Pi2HjaBwxW3xqwhp3-Nv9HqvKnYi-RR8KcuWk.cache +0 -0
  122. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9L0RNb_fbisaw_9WsSFYANfhgTuQtvP-91QSEjXNmY8.cache +1 -0
  123. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9XgPoYN_JsGzZkpXeM3pxQXrYH26-9gSsoxEp6HpEUM.cache +1 -0
  124. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9j8hez9pHdCQdcwjpKeoYVrBmVfR4ASBCJUtaO-CN5s.cache +3 -0
  125. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9kTCjSGFbe16SMqnP158MuUj3D28soCZdwKuAsJzbUM.cache +1 -0
  126. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9lx_5ziCg-eDu1m2pR0-AVevZkF224xRlIvfaq7PCUo.cache +2 -0
  127. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9ztFL_5lRP0EpvY6Yd8zo0LH5wpnuxoAxDa5ffRhyC8.cache +1 -0
  128. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/A6zGVTNPc91lU58ffj05A46ORdomivGj5lc_q3_XQQQ.cache +1 -0
  129. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/AC-yaYeOXxlIdUwTDpTd_TdSmK_-ZGilXZPaleWhVm4.cache +3 -0
  130. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ACsvcWXFkXGo_dZSWRNCzv6q67NHrhjltwMF4SyKs1s.cache +1 -0
  131. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/AMY65tvjndTjQ3V_ZahdJL8X2zj93DU2o7K5FPvxu1M.cache +1 -0
  132. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/AfnuA-IDSQtDAo9XtkPxxczSKB-VlblUrZXAKCj-QaQ.cache +1 -0
  133. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/AfqP34F2lwUisVYv00aFZKJ_aiYs8smx4j36oeW-S6k.cache +0 -0
  134. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/B4oFb3TRenHH4JcduyCvGTFxZdU3-VvTQ1LDvm_-iIE.cache +0 -0
  135. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/BUMVcNGlZ_mEthsPogkRuGobQajJknMTlMbRrCDEWw0.cache +3 -0
  136. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/BhtNyi5hwiVF2UewLiIUG0mEvA4dTsuA9OZfLInxiaM.cache +0 -0
  137. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/BrL6mwK6Wl92bBsvnD7AQvHWBpWjUC9-hVUuew9XT28.cache +3 -0
  138. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/C-JhuIiVv78piyuXHnljYWwor7hg29mRYWxbFgsSRAQ.cache +1 -0
  139. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/COs9Zo-3ILgYwVitDgIYCUYqG71jyK12ukoiV9DgXGM.cache +0 -0
  140. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CTUWBa7w8yk1eBR-vVnNVN1dD-U9aUQCm4RvF-RIYvU.cache +0 -0
  141. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CXmlgiMLFXGktY7o_a-zXGvORAwhacWo9qzuYfEGE1Y.cache +2 -0
  142. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CYZk3DPZTVGkS2PnZvMUwL2FZdyXbaP3rElZ0sKlTZ8.cache +0 -0
  143. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CZI7jT4PWrphGBTddtX9G0MlBskacV4xNnNIiJXLNgU.cache +1 -0
  144. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CePIL6yNvdNcXUbCs39xoB8mYs4nnVdGrFW5R5CKggQ.cache +1 -0
  145. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CjHnZuWbfmemr8OwunPxBX2q82kfqQrpyzZqQlgByb0.cache +0 -0
  146. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ClbLBnTjKQ2M71bFPm49Q3mL6f1ezJqft9rA3amsQFw.cache +1 -0
  147. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/DKPWCuG8-WIOXIo8ZtYEQSW_cfaaGpNJh811CN497o4.cache +1 -0
  148. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Ds9pJpmDkvJOvR198IUwYc9ULGPmil2iTqFiFiGjlTk.cache +3 -0
  149. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/EDARLTaT4IC1VOfwV6baowYKbgOdR9-vtVU6QyLQTjI.cache +1 -0
  150. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/EFQva92FBkqJrXlwFMm0pOyMbmEIDZZTjKfNSL_SkZc.cache +0 -0
  151. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/EHfXjykHNwJnJ2mPC_X-9u5XQ-lo3m4lSyPzw-raCms.cache +2 -0
  152. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/EK94JTjppaz8RHle7cCnC2-AtPXwdJ8yDkUP71ZUnek.cache +2 -0
  153. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/EwckOCeKfibFMJk1ykog1VSiAkRxFPJRomR6UnhspFA.cache +1 -0
  154. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ExtPB6HexdzjWLQJkCzrB5IkQF3ZZXpBa9IPQROeLIg.cache +1 -0
  155. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/F3oiB_iZ467uXhAv4IjoV5eZSm-bwgS6xUjszPD5e9U.cache +1 -0
  156. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/FLTgQmbIJNhFOAe7KHjPgxgSVYkYlXH0Zluo0g-u5hs.cache +1 -0
  157. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Fns9pIxUWrPU5h9kFlyKS-PwKd8HxU5Q5XOD4g0BDeo.cache +1 -0
  158. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/FzziiFjbUsrpb7SF0ce2ZkWkxLwjo1wA24G0hXaeIkQ.cache +1 -0
  159. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/G4BoLpM5zXXaRM_wF7w6DGkOQj0_e8uQ6g6DT766VrE.cache +0 -0
  160. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/G8NeUk52Hnr7bG_HKvsYHrwPVbf5CBK-faalsc0CqhI.cache +2 -0
  161. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/GTCjnTkoJck-uQZ8rDMK4r714HhpzeJkNtzPFQV8DwA.cache +1 -0
  162. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/H-vLBWd7GFBKYhIfIvjrh_ybAYrwqt68JLUd2byKlKM.cache +1 -0
  163. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/HC8vOhiwVnfoGJvnxqt_LC-wzGgzV4N0m9oKKtx7N80.cache +0 -0
  164. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/HF6WTSaNGkbbpYZKSQjL5V4qNzevXksPfMsclnueSZA.cache +0 -0
  165. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/HRQDr4TsPyfcN8NC7b3hmZJH11mUY7vTjoscEUdlesI.cache +0 -0
  166. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/HWkb49cHyNx6KuEmVwRc8kLyFRR8KSqwIWuRirwMe4A.cache +1 -0
  167. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/HYCvQ7OACArsJevB7clpYUhju6qbdSyS_lPA0HTzxcE.cache +1 -0
  168. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Hi1YUR3014PHRusUI2Psm51L3qSNb6NNtUjAoqdBgJA.cache +2 -0
  169. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/HkivVuo1QbHiVAZRwxz8KISg7w8SkVsLvXXPjTyo1RY.cache +1 -0
  170. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/HtjMoz49NTbpPgQ5E7HuoCduA9wa6_NbwM3PosrO2S8.cache +3 -0
  171. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/HuK4Oh3hKlvMS7sKaJ-1IJset3TEcndPwPSIc44otsw.cache +1 -0
  172. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/I-8CERt84_2ELVeGVTwnLrIVeXtiYNjz9MKKpaE9a1k.cache +3 -0
  173. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/I-pscSbe6WWQ-Hy600ABZdc6wMYC1utqCHCpXRgHkck.cache +3 -0
  174. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/I4X_-Wfk9tSNv7Y7DN1stcfdEmVP66GhbIg4rBGTvJk.cache +1 -0
  175. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/IIHFsCskfZ8wud0ArVYadcEz1sCwDNST_CzhdRQ0ymw.cache +1 -0
  176. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/IN3zcsPPiYWRXkoyEdQTWYZdobUm-hVZPF-RsyKSLZo.cache +1 -0
  177. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/INv_HAthrzDkm_D38eTGnh1Fv0Vj_MuX4fgbbRyXIuI.cache +0 -0
  178. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ITHO1axalp1rHmqR3YvaIkjcAvn_b-ZDcFHAwd77x8g.cache +0 -0
  179. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Il6R5QNZ6BNMpHu2VKbgxYd7kLnD_VBlXj4sNW3Ogrg.cache +1 -0
  180. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Ip3sIWGeNobzJVqwWB-9uzzRqvRzIl16lYYu2LwYSkg.cache +0 -0
  181. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Is-w-V5glNAuSJQI6LlVgYrsrBpTkB8UuMyvC18kGP4.cache +1 -0
  182. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/IyqWEHJrFKiApIk9ykMM4aexL6XjINdu8SM_hvODC5U.cache +0 -0
  183. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Iyr9ur_AZWlgQioN9Q_0ZIHzk8eAR2gcP9rA9U53a2I.cache +0 -0
  184. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/IztqlpUnlF6g-AK41uS64ADOb_UqrV2XPKipfwMZtng.cache +0 -0
  185. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/J33O-gglLsJXTRsiLsEaZnkx2EejYpaY3xgL08iGtGw.cache +1 -0
  186. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/JFyms6REaLPLPGIhMN9PGqjy17pfjTRUVf7eZu9Pxco.cache +2 -0
  187. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/JIHTpeIeHLyoisKIzpqO0eHdGhi5nEKWj5-RcVKRCM0.cache +0 -0
  188. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/JW2xq5zPnik9gBTiiH4F_youPivdygFAzUOO8MbWgkM.cache +1 -0
  189. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Jd-S8kl1kAIMxvyCcIuOA7ZGbyL26f82Ye-3R_XSjdo.cache +1 -0
  190. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Jze_hM1mFPXNRoOoJw19TGQvSkWHNCf3QMNVc0ziz_Q.cache +1 -0
  191. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/K6SnboDPlbuabJPpTZ0JPk8gO6RFUZBqZ86JAtADJEI.cache +2 -0
  192. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/KA5cXFlW0WDZ_VC_cWZZYScTtlyiF3RVGqBEGU6eiWk.cache +1 -0
  193. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/KDwg9dU_fSHgpLW4os9qv5BQy9zdS-M9s6Ayd-AANVc.cache +0 -0
  194. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/KEmMrd7MCPJPBEXnAmcfU3NSj_picTq8W8sdG9tqrqE.cache +1 -0
  195. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/KIkXGvm2JGXJ5o2qXMFuGbgz6qMOB6A_YxWOUPIHKK0.cache +1 -0
  196. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/KXINFsNMK_ckYGMJQGJfbFh6Z6epFg9k-5Qhs9rW9EU.cache +1 -0
  197. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/KZT5maABQpPM8h1-x2KELDmK3nd7nKk-gcX_gjMgt2M.cache +1 -0
  198. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/KepueFEdf6u-gcEmbP_Co4sI430KiPrpm0DZTrdbZUU.cache +0 -0
  199. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/KhI2DHSuQgZjCK0ekRDtvbZpOwdYZri_CwBZ_JkxvOQ.cache +2 -0
  200. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Km_xMbxQ71ubb9QRITDKX704GvVKFUCbb0nUvxa8thQ.cache +1 -0
  201. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LEKS-dzBMjc4eTyBxtrkhH2mBdtswpViSIhSflnSWt8.cache +0 -0
  202. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LVNi0m_Fz46uZMQdhGs_Xp2qaC0-FvTGXGkvKC4t4d8.cache +1 -0
  203. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LX1cGvPp6Q6XjdGWjj9TR7J4-zLSGXBgJ4V46lvreMU.cache +2 -0
  204. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LdWTufB1ksbF48SkjjVFQaGOGLZhuR67aZdg86lyIlU.cache +0 -0
  205. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LdznozvZmzSQM-vN4gpeVOi7BnxMKo9wORxcV6AV1C4.cache +3 -0
  206. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LrSqV9e6t5RRqIrQNqg7rJNyEmu18afM4pmQogLkpaQ.cache +0 -0
  207. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/M0uQOpQsd2JJzwD9B8xFoWKkOeXsEv989W442_j6GWQ.cache +0 -0
  208. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/M7D8w6LkvEVOKTQGUh5UeMFsZH9VO0AcqcYXjP_pBUI.cache +2 -0
  209. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/MDLy9q5bNSELATVxXwYNiE_EWIk6G54Vvp6-6Nqe5GI.cache +0 -0
  210. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/MZlIjxVbEXORmEiPpu2WfhYYmXabfs-Mx0CK13UOI68.cache +0 -0
  211. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Mty8gekO-EN4nBDIU6_1vSciYe3nym8NZFIu8Blar-o.cache +3 -0
  212. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/MvmfAyy9rh72Z5qHWYe-P86KDG_4TypMgkIvJ9H_VZg.cache +2 -0
  213. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/MyIKfP196ecHA5x66VvwST274efdOn68xI7gr7-yO_s.cache +0 -0
  214. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/NVDHbW4cQm1BkVqKaV_UZJCoUGOjV__cQDP_BkY28PE.cache +2 -0
  215. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/NZYfENdib9jQ0mLkOwrrHkyePDmPSnsyNBF09R3RjDI.cache +1 -0
  216. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Nw4FfwPy0V6hfEuMiecmCowRpPVW72JuqlU1XiIbwIY.cache +0 -0
  217. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/O42pf20jdFJ_g5abvA826QHjbBd_O80pk4MWxW-tCsA.cache +3 -0
  218. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/OAJRpn8VLCOm_jZEmbk0pORgSlL7gp4nFifMo5niF-8.cache +2 -0
  219. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/OGtnLVkXIOrBNwwxtlEOXYAU-nA5S08TDyFelKR3iYA.cache +3 -0
  220. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +0 -0
  221. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/OO7RmvETdJCl6nDgMH22qEwqpy5SjZ2MMEBlC6tG8hI.cache +3 -0
  222. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Osvd5BC9KZ-hK4npyrYgEsra8aCVLyBTWo66yXU4904.cache +1 -0
  223. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/OzJXhurZ1BYWL9zrfbxtEKM1oEzmIl5xNWB0kEDMcOA.cache +0 -0
  224. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/PCOy1GxF5pveYHXcBMOi91KB446LiGmPMI1UFX8g_-Q.cache +0 -0
  225. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/PbS6_clOuwqA9I6Ve1r-WHw9oyXHcbXLmbpDmHQShgc.cache +1 -0
  226. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Q4TMVpJ3X6XrShazzrnMrNim1_G-BNe0VdCulR7F-yA.cache +3 -0
  227. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/QHu3oOt0N98TteMY5zXqcj1z97xn_5N43EfY6Pi9kL8.cache +1 -0
  228. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/QMaS77aFhjfvAlv3pTOkHY8huXHTx0qwk-Q3XC-LUuw.cache +3 -0
  229. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Qr1oeXB_1KGcnRFsaYAvIrsxKqj1Qb7vWnTRmgXk_VA.cache +0 -0
  230. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/QtA1YtaH67pw0mVtsf1tkme50FTIriYFZ0ho543Qa3A.cache +1 -0
  231. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/R4DimiN58ox6KgjnR2eQwODucfhsWMz41f58AEW2fIo.cache +3 -0
  232. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/R6PcDLPOUUtOP-BD7s_Ur0xv3uF6iMce62QfJ-box9g.cache +2 -0
  233. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RCYWsl0xUIU2nNKGL8x7couerrGdH06aVPyqe4T3v2g.cache +1 -0
  234. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RPaoa37GUXAxFdY8fAxaqrBcqpO344RueeI0-aokr-4.cache +0 -0
  235. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Raj9vOIqeGhMSGtu8Q_sPxFPdkVVSvpAJq2eZjkurSI.cache +1 -0
  236. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RasXSipZI53ixic83Lh1Gyxf7EZ-ZsS-xs6MTSlr23c.cache +1 -0
  237. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RhDVv9RZb-Rf9b572V-Tby43AKU0VobRcA3p53frD0w.cache +1 -0
  238. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RoSdinmQMNdbk42r-5aRk-ZSpex9SGn1M9kToboGRlM.cache +0 -0
  239. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RtPqr-xCyExVFKXPLlXveg3hS48LPIvlyGbMoaE9A48.cache +1 -0
  240. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Rv0ZOQezk-pppzUrdpvYZIs6NI_EYwa-F03k1Dyv6LM.cache +2 -0
  241. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/SJW0DP3AhW7DLwnpif11zo1ebaTOSKFyPK1dGObgwec.cache +3 -0
  242. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/SSs8xG34aB14Vj5PMy_zMyWZ_CI2NaiP7aUF4hIX4oQ.cache +1 -0
  243. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/SejMpuiBooXU6eBSfO33CrjJR4wNjWC8zkm6I1GAeos.cache +0 -0
  244. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/SgOybhbsgRVeyoYJJM-c3kEvJYV1gxpuo7rN-mb3Tnc.cache +3 -0
  245. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/SnzRk78-FyJIzk7pMe4SIbViUnt8al9lQ5Gy8XhFrIY.cache +1 -0
  246. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/SuILTE3Es0N_r-36Ddu2E6h49WcwH_-RsZyG4SPwKFQ.cache +2 -0
  247. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/T25N6kK7z1ktWO9T4A9GAKDxA8uV_40I9iCK72yJAzg.cache +2 -0
  248. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ToO9q9KZUkSycEPeq45MeeteesODn-nUiRkc_2K4Odw.cache +3 -0
  249. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/TpYQkHppriVPoi8yZlS7pr6M0VR-8bgS68niJd5mA_k.cache +2 -0
  250. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/TseCU3hhL2Yp_9cVEW4ZfF410Uc5RsRl2WJ2e_RKzYQ.cache +3 -0
  251. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/UGP2acGAePQXO0CTCNSktz3KFcnj6TVRjK78o3_-Z6Y.cache +0 -0
  252. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/UTA-dAu39ywx50aKbw-_vIHLbrENV9O11MIOmfAcqwY.cache +3 -0
  253. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/UUuqFAvUHy8E32lwI0UKWj0JDvMFXin1lOZh7r_CFU4.cache +1 -0
  254. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/V7-8OhEYcV91Tjl1Mp92Zs-q6tVYY_NoXBRZQB5vROo.cache +1 -0
  255. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VP-5hBBPrMcJGIIn6HqbMSqU2AOAWb_2b7BAWcdrc1c.cache +1 -0
  256. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VQj8MeqFcSYovlGUK0G9tMS2Xu_WouD5nZPyKyiweq0.cache +3 -0
  257. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Vlf9_BCT3w6tU64yjiuvN-opIYynyGIFGSKW8Bb5isw.cache +1 -0
  258. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VnoinoejmNyMusctCLIfDXuFCSEi8usJC8m6xDhUjq4.cache +1 -0
  259. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Vz_XyP4dxLytmt1nM75kFGT12PZq3bNYSD4lvdLEetE.cache +1 -0
  260. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/W9RiVsPehgaZrUMdd9IMxV6tWIOaJSUJC3FkXb1X_B4.cache +1 -0
  261. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/WRHdYa7fEbFVL6yef8rtmfO7EkmHLP7mvLYrFsydc7M.cache +2 -0
  262. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Wma3mCvAkft1gb4iskpJcSKJAxs20F1f9J2E4aG1a58.cache +0 -0
  263. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/WqdHTk7KRwHNiGDY3E1WbSwBE2PWrTEC_HKQ2dgQh_4.cache +0 -0
  264. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/X6fitKDo9k84hcsJAAFipPaeAqWy6LI4yN0xoXUMI-8.cache +0 -0
  265. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/XETabnfMEH6v-S1S7wAPpqzzyrusq2-gKEj9xXfazWQ.cache +1 -0
  266. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/XObHVKJOPQbhJIypQ3m2F7cKPAyfUl2i31t0ZpyyNPg.cache +2 -0
  267. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/XPURjd_micKqrq3ZsfPm4DEg045aMh0u2t6H0Kg9Yvs.cache +2 -0
  268. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/XimghOZesEI6BcweyGe411shS-dhkXGeXfICxpTMaP4.cache +1 -0
  269. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Xq5ZUgEeXuuZ_LjabsqNrD-0Go3uQ_Cyp61HWjTc58U.cache +2 -0
  270. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/XynXdkOeORTqM8SLwd29IBzqweNuC8cwHaKDU6aCSK4.cache +3 -0
  271. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Y2JXHdR1Qwb4e3EeE4Ez_zsdxDGOIBwOchlk5EROlTE.cache +2 -0
  272. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Y8R1Go-ZDdkrGFky02NN7UnMEhQk2DqxsvSX77Fa6FA.cache +0 -0
  273. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/YHkX1Dz4-_N2HxZ5NqTKZci_3AXSvWJeJA_i_31f9kA.cache +3 -0
  274. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/YJbah_vlhgRdgT_Teq1T0fCbheSTzHIoHemg9qXindA.cache +2 -0
  275. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/YRwMHi7FPQbp1ciWNBf8zVdyOOQZ90gZxW-FGjsbo0M.cache +1 -0
  276. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Yck0uONNPexAbm2FyBPrfd5yIS7zF6qget0qv5CjsHU.cache +2 -0
  277. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/YkwiLOME0K0S68fJF1m4B59vHPfCrL1XkvKuU4REXOU.cache +1 -0
  278. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ZDVfJezxW8_ZZwk-cwh-Xi0vzlaptRAdhzieKE_zUFY.cache +0 -0
  279. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ZKHvJwMZX4BDjok7en1aRFmYUMIGKxP-2WLxxfmV4_0.cache +0 -0
  280. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ZKMpLctz8nAvAMaFYwxiwBLh_0HFVR00Ef2Tp-L9gk8.cache +0 -0
  281. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ZKaeyFbyv_L52WIc3QtQXTKgCIpwbTR-uFJLaTMGqMw.cache +2 -0
  282. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ZMXh61oyO92eyHwgIArcoEU68tdVc-dasYwTUiSdsv8.cache +1 -0
  283. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ZOf3jjmjGkvVrLqqqgnNzuiOWpkOmQ9MEIwXhtswC5M.cache +1 -0
  284. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ZPgHNAJhX0yVATfQVK4g-l9clGnQ4JK6uUQSZr3izJs.cache +1 -0
  285. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ZirvH1uELJOGqJ_P7CHUAeE_P7jHfDV-kVS3hqudqrM.cache +2 -0
  286. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Zl_4gLKgfMkcF_M-9_ZEbdVsN5G3srKY7ntGrMlSrHw.cache +0 -0
  287. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Zq028YKPdCngXVGfBnaVxR3ggnSLIXPPQmXKuOrf8Rc.cache +3 -0
  288. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ZrHurvGsuXiJ-LyErQBL_Z09EEVtYRzmGCuik1pCbMY.cache +0 -0
  289. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ZteKWxvlB9lz_cw0HUFX-gLZnyvx2Zl4yndbIQRAjqk.cache +1 -0
  290. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_CyPKbQqBzpjkvVSPJCuRZ6LPST2L8lNbl3pPaFoHJ0.cache +1 -0
  291. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_FzZXs9cOynmEHX2NNQ-CN3hBm85EZozlnqahZgW0p0.cache +3 -0
  292. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_RxurG4mXmoQvbBTBfr-_LxySQdZ2vRVo1x3z6BTIM8.cache +2 -0
  293. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_VTTW4fptVcLI6EEhHyBd4Z8Sqh8TQQ3-xQmcBCdhFo.cache +3 -0
  294. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_VwqClblffKCdAP_EdTPlIsw_a4CtoYdZWrIqsvTEOQ.cache +2 -0
  295. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_qTdVcypJYB06uIuozk0oFgOO-20TwjPvSXO_We2SFA.cache +1 -0
  296. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_qXTu5xPKA0W7krxy7i26PqnCiZfom_FyzNgoRcfhrY.cache +1 -0
  297. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/a-ZMeoDAaumcckLg0ikJ4VOpG4myE6TpW8NhkwHfEEY.cache +0 -0
  298. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/aTBvblCTpM9NO4FybG9Gj33dec5S6b_XUwAccF1aZYs.cache +0 -0
  299. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/adco25PKONAOLm-3rk6IkBIQCnbQZW4Ho6gjCtHDkDg.cache +1 -0
  300. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/auxxd4pZZ_TDPxKd6Z1PHX1KB7GK6XR4zZCkpSTjTIs.cache +1 -0
  301. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/b39zQHTjF26g2idhY9yeVDdpi0l5AHiJJI9GRYqF6mU.cache +3 -0
  302. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/bD4HLMG-9D4qPG_FjmXWFZ6gjrSWcpls07sjaZ-O7w8.cache +0 -0
  303. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/bNzI5dnyYKL0_36QaiWo9c62YPQqItx7pKCGRUy7FfE.cache +0 -0
  304. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/bO-oLvkRTCzyfG1n2yXs_z-XnWJGQkeq6Epi7htFc9I.cache +0 -0
  305. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/bTc-0wBzb4QwDigu6Db7NvQ_N2V40lyAP7vDnJ_nlH4.cache +1 -0
  306. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/b_F-ynokmpMl3NS98JLR_LB9VDh0YOK0UaWye7i8USE.cache +0 -0
  307. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/b_LqzZ-8tBIFMmv6e6UBt-bbUKJ2xvZ-REx5pGyx8iI.cache +1 -0
  308. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/bx9uG2b5bzutb2J4T2Sa544N5DYCTwy2P6WBGzuxs_I.cache +1 -0
  309. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/dMTaD6SlQOW5HeTJA4GTKwarCYmPyQiARbMyV_vB4d8.cache +1 -0
  310. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/dTT1R1UEP8uYnzF7i__RYmTDlUukDJ3xN_20-_05KEI.cache +1 -0
  311. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/e1v0O2JKkRHQlw8TKb1w9oZB1vemT5pyrEti-lMF5b0.cache +2 -0
  312. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/e61CL-jArxF-LrNCE2KXgDQRs24C51uEjlx6Bi19Gao.cache +0 -0
  313. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/eUu1MwUf-0AQs7dOY9q--kK5o_T1G5PiS_K2T8YR48Y.cache +1 -0
  314. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/evKXHHSZhFrDfQz8cjp24eCW4GxCo7dGht_7kIJvzBM.cache +0 -0
  315. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/fBscfaT8oxs7Yqm_nTectEFY7MEPIC4905izon3ZfkM.cache +1 -0
  316. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/fQXVskLewjixaid5c-_oVGxkq-f67ZCyGJS-4elUdCo.cache +3 -0
  317. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/fRuioQRNW0lMfz61Sc-O5z8cQlpP7T5UYGqcs0Q5M7k.cache +2 -0
  318. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/fcB3WIgbOvDMnOx21ZxJod_7X6BgByfRZnnqXb8jeCw.cache +0 -0
  319. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gBLeBlrK5msk-pYd1S99yFV_lV_9__zpaH8xxhlsN3Y.cache +0 -0
  320. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gHfAw7eXqwbHMSaPLwMnsJ-2rpS4tPojjzPflsNwjS8.cache +1 -0
  321. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gUNIBdCSgztu1IV1u2Iea8rgbpdr7yfMU81jtrXab_Q.cache +1 -0
  322. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gZ1A1--Asdejq0JC1PUTTgUEDPpV24UMUvyGvPF9qLs.cache +1 -0
  323. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ggyLrLMGVAcFn7w9p1lH-wrhmfBLSbIBYRoAosZgBx0.cache +1 -0
  324. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gnsisTlVaZW5O8yedgMtd39R6RiNWwEugCpxg7Fvhgo.cache +2 -0
  325. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gsT50j7JKHuZpK4IhejdLyeaKfQHfRPi4cKFSX40xbM.cache +0 -0
  326. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/h36EXMrbHvbFBnm3LtD7G3AszmR4XAInaarh8jjchvo.cache +0 -0
  327. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hI7K5kfULmC1N0zMvxGOCfdyDMLMqzTZ_0g-qE77V0c.cache +2 -0
  328. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hV80P7h6cMezrBztIgEAn7INoQ7Sw6p_rnUGxg6SLfI.cache +3 -0
  329. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hWu1uKCWmWR3s8-5BJoduM8XHlqgUs1A22oqy6cIioI.cache +1 -0
  330. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hYh93QS-0IpGwtz77I27Poxio2RxvCbdfwUU5DUDDac.cache +1 -0
  331. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache +0 -0
  332. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hdQmfiHfKbGaIkA-eep2f0S9_Vk4Fx_3495ZFE-5lvg.cache +2 -0
  333. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/iApklbYsz6wjnGnGAYDDvoryAu-x8xdYWFRCRICxkyg.cache +0 -0
  334. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/iRiaNr-fBLM-F3JuE14i-viRO27IlDgf7wSSP8iBX08.cache +0 -0
  335. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ifSFOIuEmyYMVEx24wla5z3sjbPQaa7ewQjWZIVK5SU.cache +3 -0
  336. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/inz6emggkYiVqCt-Bij5_ONj8YKML_oysO3SH3AXlfw.cache +0 -0
  337. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/iyALEPjIsWnyk6QHQmKHjw40Gom36pc6D2lMAVG5HAY.cache +0 -0
  338. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/j4fhwqDyIcPq-vVaM-r8IG9pkWB8unxSH-juX-2a5GM.cache +0 -0
  339. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jH9EdS7oritO7nZnEh6YwafCgT5JGaZfCBFZ1KgtDl0.cache +1 -0
  340. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jHeuZcbZgSPINIRRpB1khLlwKgjZWxOOvdlnNFfSEkQ.cache +0 -0
  341. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jL9LsrMlRmTbZOafIXj6ktFICgnHzgXQKlvs44HvaS4.cache +1 -0
  342. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jXAa5hghD4VHps1S-0rMrQYRXN8BBXvdn9E6IF0WjNE.cache +0 -0
  343. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jpHebb6f41gfqFBkL022mjpgGVahPL8Ekh1lLg2IlIo.cache +2 -0
  344. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jvbwlV4plHlp9PGnxZ3OUSBxRathaXrVgIYbETC4TLA.cache +0 -0
  345. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jxmh-q1ZW56jxojXdgi4lN0tIeaRlxXbjGoIMg9vz6A.cache +1 -0
  346. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jyqD2PEbsUGGdyIgbi8qzfxkUEXQcMx9KLnzPk5d0cg.cache +0 -0
  347. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/kKKd-AX4C2iQMZWzKs1fRBdZZ55e-EPGa0KG01lpges.cache +1 -0
  348. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/knnWBtJbi88d3b8x6dF6p4ULZW3CRg2iKMjOlzyl5U8.cache +0 -0
  349. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/kwNkwoshx63tQMuxFAI9_pmzzwkd0kQcAKGx8dy62r8.cache +0 -0
  350. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/l4Ffy5jgVLu9dt8-l5Kfc1HJe4d97NaNA9FVK3-EgZ8.cache +2 -0
  351. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/lG5HoTNviW0JZhvB2jX5FK_qt5yd2zvhNScWeyOxSlE.cache +0 -0
  352. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/lph3uDhnwIX4t1R9-tVND4IFnhJqL1LqQtMrvfG6w7s.cache +1 -0
  353. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/lzBnHrVdWXPgCGDMWeM697bVZm_TnCs0-BOLGSabSHU.cache +0 -0
  354. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/m95yq-mMsjThZfR9xAkTGkdo_JkJ9U7FMuGouKiLeYI.cache +1 -0
  355. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/mbXvxeAfJlLiWH1ENKWs5K35rGtCFwVC7Zh8iz0VxKc.cache +0 -0
  356. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/mztptfmRewdrtufZGYsHIP-cUobPQ9-KjG8g7J9AlEI.cache +1 -0
  357. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/n7XFj-ICkjn7X4nWPnxX5kW4l2h-GofBeWkFwm3kwqs.cache +3 -0
  358. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/nTw9g87OxunHhH1pqowngHCQQOw9DK2BmQ3M60OJ15g.cache +1 -0
  359. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/nXvRhnR4EVKPvqpL5ybixATwGqSAAM3GnqoreQL7lOM.cache +0 -0
  360. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/nd-bTF0GF0iq3FYx_gfrcw2MYqKJK3_u3qX_P-MB53c.cache +1 -0
  361. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/nljNEWVMdSyfIlWTqKa0VgxX1eArA7WWm0aLUeXwZ50.cache +0 -0
  362. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/oJA9-RKuPg1FyZ19t-ngXaxCLfAwE1U5oWuLrpbKxXk.cache +3 -0
  363. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/oMUQEHW_ZczsOgceMbyny4zS_7JDQR4LVJsqDC0n1Qg.cache +1 -0
  364. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ofQEceU5jwHsMGUYlKsSKWsbhIcZmqkyDTIZMXnPSZw.cache +2 -0
  365. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/oixKGcg4vjgjJVhlFVvaKQBguqvPhw-ieoH9mAkHbQQ.cache +1 -0
  366. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache +0 -0
  367. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pSu5LnLEpj6V7FhekaIzJ2IqzRZo0Ez4ZENr0VAe7TI.cache +1 -0
  368. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pcaV3zSe0X--5yc8sSWV79jvBtMWBE8wQa-qWdHCVxE.cache +1 -0
  369. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pfpeQRAl8pvI-oF3tjHTK0DO1xmDYrOBNahm32WF9k8.cache +3 -0
  370. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pnW3u_1AN48ig6ngefI89y96xoSlvnJurx-e3J-leoE.cache +2 -0
  371. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pyglm4tF6LyPZb7zZ4zXxFkSJNqS7k6t2EfdGyK4nEs.cache +2 -0
  372. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/qHufjeN07K5cjvundz8j9byD1bx0_zHs8RVtt8CPelc.cache +1 -0
  373. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/qRbG64Am2J0VJubIAD6GsUncqHCDtXdp7GpeITfNk40.cache +1 -0
  374. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/qapMpzLzmfsKUVfx8heiDDl_aM2eDpgGIgMOFmGDzgc.cache +0 -0
  375. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ql-oqp5mf_wnLFbkuDE5LgWxgPTkowkRERBa9J1Ufz4.cache +3 -0
  376. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/qp_pHvhopL_R2ArATeOwTF5IuErK2mmfscIjmi0du9I.cache +2 -0
  377. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/qr43tN6jxdx2nBuZzVh0W482kex6JzpRT_Jlg76vs4w.cache +1 -0
  378. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/qz280481u2bUSM15O8fjWQh8hRz2x9qLLz9yoJ11N_U.cache +3 -0
  379. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/r-s_eJx0epqP7zZY6vKtRB-IX2wsSvsotT_p-p3r0kA.cache +0 -0
  380. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/rHmecJHt_CBXvz20fbtsdk8OgoC9kzNTumxJ9P9syMk.cache +1 -0
  381. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/rx120TUndw4AbM88UBSGpYJDA-eXMy3CXjIepvputuo.cache +1 -0
  382. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/sHQrRWJLOYIiRDclrVXPviF4RjD612SRu8kt77SUiHY.cache +1 -0
  383. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/sLvNEi7VzgmnhJQZR2jc22RIAUd4IZUEhz-ZF3L0s0I.cache +3 -0
  384. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/sV7IPxJP0BDm_iFz5Ye0I5GUbqToWPGafxxHzruqn4o.cache +3 -0
  385. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/sgTRuK6vzO49r6Qci597WQXim5wOcnfMY8b3Wj9WT54.cache +1 -0
  386. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/sgxkvOxkALoZe-Fr8m9-ZlEmRI4Dki2eR9-L4NxZs9g.cache +2 -0
  387. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/slMNWTYxn6-pY7ZoQgwD7OirDZ-_JNhoINpkhSM8JpU.cache +1 -0
  388. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/snCjf2nATp16sbihKkc3WmJKwrM-Nf6uyHD4lvkhYBI.cache +0 -0
  389. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ssS2x0Wl67rwXHaVHsh6CO7ayn9fQ5saIwATKN6O-nI.cache +2 -0
  390. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/t7tlINbMNG_NUzXHBaszeCQI2VRXov1jsG8gGGFGjK8.cache +1 -0
  391. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tQFwNvTvB7WSc1MNrrrlR2npWEGH6-4H9ZQBt53ihrk.cache +1 -0
  392. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tYFbDrMNElXwgmisit50aNXJvRU2zlIFk5g-EJ1CQTc.cache +3 -0
  393. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tbmMu3ukwKaE0BjbtkJhphibnWbw_syO40zEfULJcwQ.cache +0 -0
  394. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tiEnLwHMkjzRHoNu0gppx2GSTp6HvRuMkp-2Oqbe1ZQ.cache +0 -0
  395. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tlN7GHZ8yK48bJWEK_4Cweb3dif5L4wN7NnoOKHL5ro.cache +1 -0
  396. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tu3RdLHCMPI-LywuuixWPMSuKUR4--X_j4TI_rdV760.cache +3 -0
  397. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/uAmF6E3JpcBzFORYg5hyetm0KtLM3wLjBGuU17UWlv0.cache +0 -0
  398. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/uyBTtu4gN_KBmzSxbVUtmM-v9o5B5gccXFhLYlhZLrc.cache +3 -0
  399. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/uzCihE-AR8X_6E7z1wNEtuLj-cVjaFBTqADSON-tTQk.cache +1 -0
  400. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/vGc3WFFBAviuYcm6LJ5gcu5NtbU8muNyHCOvpZyU2SQ.cache +2 -0
  401. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/vQMIiaadoH60k_hYUYeiCYJjRLpHKm-gG7uHD1wqPfo.cache +2 -0
  402. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/vd1KC6jswqrOuvnRtTRD89GERlj2Yip2SZaLZBndMWc.cache +0 -0
  403. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/vrpQ-4TWh71cU-S0YXR-Z_GHzbQdmQML6DcHOlDxFs8.cache +0 -0
  404. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/w1UmGVnv7CKA4yH1W1WrIvOM5Mg5CKAwMhkDa9H-wGk.cache +1 -0
  405. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/wJQv5wdvs9wuczaJi6QdbPilkpGYi_NfQwtTC0LfKBM.cache +0 -0
  406. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/wNVcsMnZLVVRwxoib0AL-Pss7tzB-1stHUlDrzpQceU.cache +1 -0
  407. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/wOrRYBx4PnokGHsz8brJHk3CsBA_R5QtMxcXGacWx08.cache +0 -0
  408. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/wR0ZldWRUBI76kaGAshsJ_ExZYfvGUIofuzRJHhsXsA.cache +0 -0
  409. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/wRDw4YT27lmkKhaxdAnGp9pC4Z3qjiGcDuvoRNK8R1I.cache +1 -0
  410. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/wTNryqjmrX_JP9rznKzF2y2a2YrSyzzgma8K9FG3-O0.cache +1 -0
  411. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/wkb-pWvPH2suUNI4gli3yDzco5HXEof-eMU1KvildcI.cache +2 -0
  412. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/wnUKZCI4IN78eoQeCsmk_i1KICUeR5377bgTIteGP80.cache +0 -0
  413. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/x6XzpqRQR0k33t_wGetXxFR4RNnG6mrp0FOBKcl4jb4.cache +1 -0
  414. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xBgeZhWxNu0MxtqsstirphbvHYba8SKFl6iWeFh92rE.cache +0 -0
  415. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xBn8xD9ZqQS3Ny4c1qGktFCWWCBs5TZ2T8NGu-mA3co.cache +0 -0
  416. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xFaJO3VyqCmZEFPdJ-P4DXsHfFcZvUjgM7CtiN81zyo.cache +1 -0
  417. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xK2dbjxrVzOePTatsreZ4nnh3ClthCqnPSehyBuO2ZI.cache +0 -0
  418. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xN9mBpSlxZ4JLyc0q561T_SLLvqnIpXprtk4baJpCjs.cache +0 -0
  419. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xgMGrsGgELUI1JBrlpZ6cAciwQgg2K2RHVNWfTJplqU.cache +1 -0
  420. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xoKDo_P83JYN3961boUtbDxcu7sgJI75E3jrJuVLsMs.cache +0 -0
  421. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xtTEgatYUqNva-IT6ZqzWf5TESvI6ZpZtdqApKObz00.cache +3 -0
  422. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yJKiLlva8DyyyKYTNUpTFJpylQoL56pi_IW4vZkyqj8.cache +2 -0
  423. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yJnRPnw0vpepiXdtY3aVTpcLkpLuy8-6OSfuxlXDIqI.cache +0 -0
  424. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yTq_Kw6ZznYtfUwEVQcnwQcZMvk8LG97iLYfiu6G0So.cache +2 -0
  425. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yYWy53efsOhst-Z42foBwjtw0if-f9D7G48WxIxl29M.cache +0 -0
  426. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/y_iYPVLd6X40_N5VUuMQ9_her8ChEG_3389tfIkdXAg.cache +0 -0
  427. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yiCGj-7Lcf3QQiNEWZvEGKPvEYmeDOVICqO9RxNFuY8.cache +3 -0
  428. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ypbYZxdZm4IRZUBKtmDkBCX-uK7cb5LTzau4qMdbn-Y.cache +1 -0
  429. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yqRpn4nfsiyFK9SduAt_6SvG5oxNX4yGdAkuLWQIMF4.cache +0 -0
  430. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yxZppbEFzuw0ceHGlPraaFSyHauQhC-W27YkpGOat4g.cache +1 -0
  431. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yzDL94QvKghx1HWV0_j4knxWP50emPZz5acLQPAFkyk.cache +3 -0
  432. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/z5MJ3dGP-oEQ4OicSFvpF6LC2Hiu_N5X4OXUvTcEkJQ.cache +1 -0
  433. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zCHY3Px9vEvHp49LVEcJwirmOzwBRmXHVAuhJZekyEA.cache +2 -0
  434. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zUgR8-T7pENJvFOubVNhutku2rwfui6pbfr7P6hUf70.cache +1 -0
  435. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zW-P8B7lOQSeQCGunKH30LiXn0QwGPBZGKGmUed-6QI.cache +3 -0
  436. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zXbpClElJq8zwSwvf6-afJPNib2fisrkygDE8IsFQ6g.cache +0 -0
  437. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zXeO3OESUCMsMCtlCty57A32WQ-yiiDDC_keencK8JE.cache +1 -0
  438. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zXnjRyD6hCOEmKVRwgAUzbSSUOtnw7fkIPr_pmAPu6I.cache +1 -0
  439. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zcVf7iNuAXXr2uTNmOFUONY0W_n__zGDC7y924dOd7Q.cache +1 -0
  440. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zdaei-ObMqKCqfd60KURUHbIOgzJB9tcnY3bQxNiBj8.cache +1 -0
  441. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zq3uZtzIUcUfsdw7NltjSkoNhDYP0_tt36dmJH6DPPw.cache +1 -0
  442. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zttbDN8QAQl58qoFYUOMY429NdXLuS7mSN3tLlL1GTc.cache +1 -0
  443. data/test/dummy/tmp/pids/passenger.3000.pid.lock +0 -0
  444. data/test/formalizer_test.rb +59 -0
  445. data/test/models/form_field_test.rb +127 -0
  446. data/test/models/form_test.rb +117 -0
  447. data/test/models/formalizer_config_test.rb +35 -0
  448. data/test/models/formalizer_form_field_test.rb +39 -0
  449. data/test/models/formalizer_form_test.rb +34 -0
  450. data/test/models/utils_test.rb +30 -0
  451. data/test/test_helper.rb +20 -0
  452. metadata +991 -0
@@ -0,0 +1,4830 @@
1
+  (0.1ms) begin transaction
2
+ --------------------------
3
+ UtilsTest: test_file_found
4
+ --------------------------
5
+  (0.1ms) rollback transaction
6
+  (0.1ms) begin transaction
7
+ ------------------------------
8
+ UtilsTest: test_file_not_found
9
+ ------------------------------
10
+  (0.1ms) rollback transaction
11
+  (0.0ms) begin transaction
12
+ -----------------------------------------
13
+ FormalizerConfigTest: test_invalid_config
14
+ -----------------------------------------
15
+  (0.1ms) rollback transaction
16
+  (0.1ms) begin transaction
17
+ ---------------------------------------
18
+ FormalizerConfigTest: test_valid_config
19
+ ---------------------------------------
20
+  (0.1ms) rollback transaction
21
+  (0.1ms) begin transaction
22
+ --------------------------------------------
23
+ FormalizerFormFieldTest: test_add_form_field
24
+ --------------------------------------------
25
+  (0.1ms) rollback transaction
26
+  (0.1ms) begin transaction
27
+ -------------------------------
28
+ FormalizerTest: test_formalizer
29
+ -------------------------------
30
+  (0.0ms) rollback transaction
31
+  (0.1ms) begin transaction
32
+ -------------------------
33
+ FormalizerTest: test_tags
34
+ -------------------------
35
+  (0.1ms) rollback transaction
36
+  (0.1ms) begin transaction
37
+ --------------------------------------------
38
+ FormTest: test_form_from_invalid_direct_html
39
+ --------------------------------------------
40
+  (0.1ms) rollback transaction
41
+  (0.1ms) begin transaction
42
+ -------------------------------------
43
+ FormTest: test_from_from_invalid_path
44
+ -------------------------------------
45
+  (0.1ms) rollback transaction
46
+  (0.0ms) begin transaction
47
+ --------------------------------------------------
48
+ FormTest: test_form_from_valid_path_but_wrong_html
49
+ --------------------------------------------------
50
+  (0.1ms) rollback transaction
51
+  (0.0ms) begin transaction
52
+ ----------------------------
53
+ FormTest: test_export_to_pdf
54
+ ----------------------------
55
+  (0.1ms) rollback transaction
56
+  (0.1ms) begin transaction
57
+ -----------------------------------------------------
58
+ FormTest: test_fill_form_with_missing_required_fields
59
+ -----------------------------------------------------
60
+  (0.1ms) rollback transaction
61
+  (0.1ms) begin transaction
62
+ -------------------------------------------
63
+ FormTest: test_fill_form_with_missing_param
64
+ -------------------------------------------
65
+  (0.8ms) rollback transaction
66
+  (0.1ms) begin transaction
67
+ ------------------------
68
+ FormTest: test_fill_form
69
+ ------------------------
70
+  (0.1ms) rollback transaction
71
+  (0.6ms) begin transaction
72
+ ----------------------------------
73
+ FormTest: test_form_invalid_params
74
+ ----------------------------------
75
+  (0.1ms) rollback transaction
76
+  (0.1ms) begin transaction
77
+ ---------------------------------
78
+ FormTest: test_new_form_from_path
79
+ ---------------------------------
80
+  (0.5ms) rollback transaction
81
+  (0.1ms) begin transaction
82
+ ----------------------------------------
83
+ FormFieldTest: test_set_form_field_value
84
+ ----------------------------------------
85
+  (0.1ms) rollback transaction
86
+  (0.1ms) begin transaction
87
+ -------------------------------------------
88
+ FormFieldTest: test_form_field_valid_params
89
+ -------------------------------------------
90
+  (0.0ms) rollback transaction
91
+  (0.1ms) begin transaction
92
+ ---------------------------------------------
93
+ FormFieldTest: test_form_field_invalid_params
94
+ ---------------------------------------------
95
+  (0.1ms) rollback transaction
96
+  (0.1ms) begin transaction
97
+ ----------------------------------------
98
+ FormFieldTest: test_set_form_field_value
99
+ ----------------------------------------
100
+  (0.0ms) rollback transaction
101
+  (0.1ms) begin transaction
102
+ -------------------------------------------
103
+ FormFieldTest: test_form_field_valid_params
104
+ -------------------------------------------
105
+  (0.1ms) rollback transaction
106
+  (0.1ms) begin transaction
107
+ ---------------------------------------------
108
+ FormFieldTest: test_form_field_invalid_params
109
+ ---------------------------------------------
110
+  (0.0ms) rollback transaction
111
+  (0.1ms) begin transaction
112
+ --------------------------
113
+ UtilsTest: test_file_found
114
+ --------------------------
115
+  (0.1ms) rollback transaction
116
+  (0.0ms) begin transaction
117
+ ------------------------------
118
+ UtilsTest: test_file_not_found
119
+ ------------------------------
120
+  (0.0ms) rollback transaction
121
+  (0.0ms) begin transaction
122
+ -------------------------------------
123
+ FormTest: test_from_from_invalid_path
124
+ -------------------------------------
125
+  (0.1ms) rollback transaction
126
+  (0.1ms) begin transaction
127
+ ------------------------
128
+ FormTest: test_fill_form
129
+ ------------------------
130
+  (0.0ms) rollback transaction
131
+  (0.1ms) begin transaction
132
+ ----------------------------------
133
+ FormTest: test_form_invalid_params
134
+ ----------------------------------
135
+  (0.0ms) rollback transaction
136
+  (0.1ms) begin transaction
137
+ ---------------------------------
138
+ FormTest: test_new_form_from_path
139
+ ---------------------------------
140
+  (0.0ms) rollback transaction
141
+  (0.1ms) begin transaction
142
+ -------------------------------------------
143
+ FormTest: test_fill_form_with_missing_param
144
+ -------------------------------------------
145
+  (0.0ms) rollback transaction
146
+  (0.1ms) begin transaction
147
+ -----------------------------------------------------
148
+ FormTest: test_fill_form_with_missing_required_fields
149
+ -----------------------------------------------------
150
+  (0.0ms) rollback transaction
151
+  (0.1ms) begin transaction
152
+ --------------------------------------------
153
+ FormTest: test_form_from_invalid_direct_html
154
+ --------------------------------------------
155
+  (0.0ms) rollback transaction
156
+  (0.1ms) begin transaction
157
+ ----------------------------
158
+ FormTest: test_export_to_pdf
159
+ ----------------------------
160
+  (0.1ms) rollback transaction
161
+  (0.1ms) begin transaction
162
+ --------------------------------------------------
163
+ FormTest: test_form_from_valid_path_but_wrong_html
164
+ --------------------------------------------------
165
+  (0.1ms) rollback transaction
166
+  (0.1ms) begin transaction
167
+ -----------------------------------------
168
+ FormalizerConfigTest: test_invalid_config
169
+ -----------------------------------------
170
+  (0.1ms) rollback transaction
171
+  (0.1ms) begin transaction
172
+ ---------------------------------------
173
+ FormalizerConfigTest: test_valid_config
174
+ ---------------------------------------
175
+  (0.1ms) rollback transaction
176
+  (0.1ms) begin transaction
177
+ -------------------------
178
+ FormalizerTest: test_tags
179
+ -------------------------
180
+  (0.1ms) rollback transaction
181
+  (0.1ms) begin transaction
182
+ -------------------------------
183
+ FormalizerTest: test_formalizer
184
+ -------------------------------
185
+  (0.1ms) rollback transaction
186
+  (0.0ms) begin transaction
187
+ --------------------------------------------
188
+ FormalizerFormFieldTest: test_add_form_field
189
+ --------------------------------------------
190
+  (0.1ms) rollback transaction
191
+  (0.1ms) begin transaction
192
+ -------------------------------
193
+ FormalizerTest: test_formalizer
194
+ -------------------------------
195
+  (0.1ms) rollback transaction
196
+  (0.1ms) begin transaction
197
+ -------------------------
198
+ FormalizerTest: test_tags
199
+ -------------------------
200
+  (0.1ms) rollback transaction
201
+  (0.1ms) begin transaction
202
+ ---------------------------------
203
+ FormTest: test_new_form_from_path
204
+ ---------------------------------
205
+  (0.0ms) rollback transaction
206
+  (0.1ms) begin transaction
207
+ ----------------------------------
208
+ FormTest: test_form_invalid_params
209
+ ----------------------------------
210
+  (0.2ms) rollback transaction
211
+  (0.1ms) begin transaction
212
+ -------------------------------------------
213
+ FormTest: test_fill_form_with_missing_param
214
+ -------------------------------------------
215
+  (0.0ms) rollback transaction
216
+  (0.1ms) begin transaction
217
+ --------------------------------------------------
218
+ FormTest: test_form_from_valid_path_but_wrong_html
219
+ --------------------------------------------------
220
+  (0.1ms) rollback transaction
221
+  (0.1ms) begin transaction
222
+ ----------------------------
223
+ FormTest: test_export_to_pdf
224
+ ----------------------------
225
+  (0.1ms) rollback transaction
226
+  (0.1ms) begin transaction
227
+ --------------------------------------------
228
+ FormTest: test_form_from_invalid_direct_html
229
+ --------------------------------------------
230
+  (0.1ms) rollback transaction
231
+  (0.1ms) begin transaction
232
+ ------------------------
233
+ FormTest: test_fill_form
234
+ ------------------------
235
+  (0.1ms) rollback transaction
236
+  (0.1ms) begin transaction
237
+ -------------------------------------
238
+ FormTest: test_from_from_invalid_path
239
+ -------------------------------------
240
+  (0.1ms) rollback transaction
241
+  (0.1ms) begin transaction
242
+ -----------------------------------------------------
243
+ FormTest: test_fill_form_with_missing_required_fields
244
+ -----------------------------------------------------
245
+  (0.1ms) rollback transaction
246
+  (0.1ms) begin transaction
247
+ --------------------------
248
+ UtilsTest: test_file_found
249
+ --------------------------
250
+  (0.1ms) rollback transaction
251
+  (0.1ms) begin transaction
252
+ ------------------------------
253
+ UtilsTest: test_file_not_found
254
+ ------------------------------
255
+  (0.0ms) rollback transaction
256
+  (0.5ms) begin transaction
257
+ --------------------------------------------
258
+ FormalizerFormFieldTest: test_add_form_field
259
+ --------------------------------------------
260
+  (0.1ms) rollback transaction
261
+  (0.1ms) begin transaction
262
+ ---------------------------------------------
263
+ FormFieldTest: test_form_field_invalid_params
264
+ ---------------------------------------------
265
+  (0.1ms) rollback transaction
266
+  (0.1ms) begin transaction
267
+ -------------------------------------------
268
+ FormFieldTest: test_form_field_valid_params
269
+ -------------------------------------------
270
+  (0.0ms) rollback transaction
271
+  (0.0ms) begin transaction
272
+ ----------------------------------------
273
+ FormFieldTest: test_set_form_field_value
274
+ ----------------------------------------
275
+  (0.1ms) rollback transaction
276
+  (0.0ms) begin transaction
277
+ -----------------------------------------
278
+ FormalizerConfigTest: test_invalid_config
279
+ -----------------------------------------
280
+  (0.1ms) rollback transaction
281
+  (0.1ms) begin transaction
282
+ ---------------------------------------
283
+ FormalizerConfigTest: test_valid_config
284
+ ---------------------------------------
285
+  (0.1ms) rollback transaction
286
+  (0.1ms) begin transaction
287
+ -------------------------------------------
288
+ FormFieldTest: test_form_field_valid_params
289
+ -------------------------------------------
290
+  (0.1ms) rollback transaction
291
+  (0.1ms) begin transaction
292
+ ---------------------------------------------
293
+ FormFieldTest: test_form_field_invalid_params
294
+ ---------------------------------------------
295
+  (0.0ms) rollback transaction
296
+  (0.1ms) begin transaction
297
+ ----------------------------------------
298
+ FormFieldTest: test_set_form_field_value
299
+ ----------------------------------------
300
+  (0.2ms) rollback transaction
301
+  (0.1ms) begin transaction
302
+ -----------------------------------------
303
+ FormalizerConfigTest: test_invalid_config
304
+ -----------------------------------------
305
+  (0.1ms) rollback transaction
306
+  (0.1ms) begin transaction
307
+ ---------------------------------------
308
+ FormalizerConfigTest: test_valid_config
309
+ ---------------------------------------
310
+  (0.1ms) rollback transaction
311
+  (0.1ms) begin transaction
312
+ --------------------------------------------
313
+ FormalizerFormFieldTest: test_add_form_field
314
+ --------------------------------------------
315
+  (0.1ms) rollback transaction
316
+  (0.0ms) begin transaction
317
+ -------------------------
318
+ FormalizerTest: test_tags
319
+ -------------------------
320
+  (0.1ms) rollback transaction
321
+  (0.1ms) begin transaction
322
+ -------------------------------
323
+ FormalizerTest: test_formalizer
324
+ -------------------------------
325
+  (0.0ms) rollback transaction
326
+  (0.0ms) begin transaction
327
+ --------------------------------------------------
328
+ FormTest: test_form_from_valid_path_but_wrong_html
329
+ --------------------------------------------------
330
+  (0.1ms) rollback transaction
331
+  (0.1ms) begin transaction
332
+ ----------------------------------
333
+ FormTest: test_form_invalid_params
334
+ ----------------------------------
335
+  (0.0ms) rollback transaction
336
+  (0.1ms) begin transaction
337
+ ---------------------------------
338
+ FormTest: test_new_form_from_path
339
+ ---------------------------------
340
+  (0.0ms) rollback transaction
341
+  (0.1ms) begin transaction
342
+ -----------------------------------------------------
343
+ FormTest: test_fill_form_with_missing_required_fields
344
+ -----------------------------------------------------
345
+  (0.4ms) rollback transaction
346
+  (0.1ms) begin transaction
347
+ -------------------------------------
348
+ FormTest: test_from_from_invalid_path
349
+ -------------------------------------
350
+  (0.0ms) rollback transaction
351
+  (0.1ms) begin transaction
352
+ ----------------------------
353
+ FormTest: test_export_to_pdf
354
+ ----------------------------
355
+  (1.0ms) rollback transaction
356
+  (0.1ms) begin transaction
357
+ -------------------------------------------
358
+ FormTest: test_fill_form_with_missing_param
359
+ -------------------------------------------
360
+  (0.1ms) rollback transaction
361
+  (0.1ms) begin transaction
362
+ ------------------------
363
+ FormTest: test_fill_form
364
+ ------------------------
365
+  (0.1ms) rollback transaction
366
+  (0.1ms) begin transaction
367
+ --------------------------------------------
368
+ FormTest: test_form_from_invalid_direct_html
369
+ --------------------------------------------
370
+  (0.1ms) rollback transaction
371
+  (0.1ms) begin transaction
372
+ --------------------------
373
+ UtilsTest: test_file_found
374
+ --------------------------
375
+  (0.0ms) rollback transaction
376
+  (0.0ms) begin transaction
377
+ ------------------------------
378
+ UtilsTest: test_file_not_found
379
+ ------------------------------
380
+  (0.0ms) rollback transaction
381
+  (0.1ms) begin transaction
382
+ --------------------------------------------
383
+ FormalizerFormFieldTest: test_add_form_field
384
+ --------------------------------------------
385
+  (0.1ms) rollback transaction
386
+  (0.1ms) begin transaction
387
+ ---------------------------------------------
388
+ FormFieldTest: test_form_field_invalid_params
389
+ ---------------------------------------------
390
+  (0.0ms) rollback transaction
391
+  (0.1ms) begin transaction
392
+ ----------------------------------------
393
+ FormFieldTest: test_set_form_field_value
394
+ ----------------------------------------
395
+  (0.0ms) rollback transaction
396
+  (0.1ms) begin transaction
397
+ -------------------------------------------
398
+ FormFieldTest: test_form_field_valid_params
399
+ -------------------------------------------
400
+  (0.0ms) rollback transaction
401
+  (0.1ms) begin transaction
402
+ -------------------------------
403
+ FormalizerTest: test_formalizer
404
+ -------------------------------
405
+  (0.1ms) rollback transaction
406
+  (0.1ms) begin transaction
407
+ -------------------------
408
+ FormalizerTest: test_tags
409
+ -------------------------
410
+  (0.1ms) rollback transaction
411
+  (0.1ms) begin transaction
412
+ ----------------------------------------
413
+ FormalizerFormTest: test_add_form_errors
414
+ ----------------------------------------
415
+  (0.0ms) rollback transaction
416
+  (0.1ms) begin transaction
417
+ -----------------------------------------
418
+ FormalizerConfigTest: test_invalid_config
419
+ -----------------------------------------
420
+  (0.1ms) rollback transaction
421
+  (0.1ms) begin transaction
422
+ ---------------------------------------
423
+ FormalizerConfigTest: test_valid_config
424
+ ---------------------------------------
425
+  (0.1ms) rollback transaction
426
+  (0.1ms) begin transaction
427
+ ------------------------------
428
+ UtilsTest: test_file_not_found
429
+ ------------------------------
430
+  (0.7ms) rollback transaction
431
+  (0.1ms) begin transaction
432
+ --------------------------
433
+ UtilsTest: test_file_found
434
+ --------------------------
435
+  (0.0ms) rollback transaction
436
+  (0.1ms) begin transaction
437
+ ------------------------
438
+ FormTest: test_fill_form
439
+ ------------------------
440
+  (0.1ms) rollback transaction
441
+  (0.1ms) begin transaction
442
+ --------------------------------------------------
443
+ FormTest: test_form_from_valid_path_but_wrong_html
444
+ --------------------------------------------------
445
+  (0.1ms) rollback transaction
446
+  (0.1ms) begin transaction
447
+ ----------------------------------
448
+ FormTest: test_form_invalid_params
449
+ ----------------------------------
450
+  (0.0ms) rollback transaction
451
+  (0.0ms) begin transaction
452
+ -------------------------------------
453
+ FormTest: test_from_from_invalid_path
454
+ -------------------------------------
455
+  (0.0ms) rollback transaction
456
+  (0.0ms) begin transaction
457
+ --------------------------------------------
458
+ FormTest: test_form_from_invalid_direct_html
459
+ --------------------------------------------
460
+  (0.0ms) rollback transaction
461
+  (0.0ms) begin transaction
462
+ ----------------------------
463
+ FormTest: test_export_to_pdf
464
+ ----------------------------
465
+  (0.2ms) rollback transaction
466
+  (0.1ms) begin transaction
467
+ -----------------------------------------------------
468
+ FormTest: test_fill_form_with_missing_required_fields
469
+ -----------------------------------------------------
470
+  (0.1ms) rollback transaction
471
+  (0.1ms) begin transaction
472
+ ---------------------------------
473
+ FormTest: test_new_form_from_path
474
+ ---------------------------------
475
+  (0.1ms) rollback transaction
476
+  (0.1ms) begin transaction
477
+ -------------------------------------------
478
+ FormTest: test_fill_form_with_missing_param
479
+ -------------------------------------------
480
+  (0.1ms) rollback transaction
481
+  (0.1ms) begin transaction
482
+ ----------------------------------------
483
+ FormalizerFormTest: test_add_form_errors
484
+ ----------------------------------------
485
+  (0.1ms) rollback transaction
486
+  (0.1ms) begin transaction
487
+ --------------------------
488
+ UtilsTest: test_file_found
489
+ --------------------------
490
+  (0.1ms) rollback transaction
491
+  (0.1ms) begin transaction
492
+ ------------------------------
493
+ UtilsTest: test_file_not_found
494
+ ------------------------------
495
+  (0.0ms) rollback transaction
496
+  (0.1ms) begin transaction
497
+ ---------------------------------------
498
+ FormalizerConfigTest: test_valid_config
499
+ ---------------------------------------
500
+  (0.1ms) rollback transaction
501
+  (0.1ms) begin transaction
502
+ -----------------------------------------
503
+ FormalizerConfigTest: test_invalid_config
504
+ -----------------------------------------
505
+  (0.1ms) rollback transaction
506
+  (0.0ms) begin transaction
507
+ -------------------------------------------
508
+ FormalizerTest: test_formalizer_fill_fields
509
+ -------------------------------------------
510
+  (0.1ms) rollback transaction
511
+  (0.1ms) begin transaction
512
+ -------------------------
513
+ FormalizerTest: test_tags
514
+ -------------------------
515
+  (0.1ms) rollback transaction
516
+  (0.1ms) begin transaction
517
+ --------------------------------------------
518
+ FormalizerFormFieldTest: test_add_form_field
519
+ --------------------------------------------
520
+  (0.1ms) rollback transaction
521
+  (0.2ms) begin transaction
522
+ ---------------------------------------------
523
+ FormFieldTest: test_form_field_invalid_params
524
+ ---------------------------------------------
525
+  (0.1ms) rollback transaction
526
+  (0.1ms) begin transaction
527
+ -------------------------------------------
528
+ FormFieldTest: test_form_field_valid_params
529
+ -------------------------------------------
530
+  (0.1ms) rollback transaction
531
+  (0.1ms) begin transaction
532
+ ----------------------------------------
533
+ FormFieldTest: test_set_form_field_value
534
+ ----------------------------------------
535
+  (0.1ms) rollback transaction
536
+  (0.1ms) begin transaction
537
+ ------------------------
538
+ FormTest: test_fill_form
539
+ ------------------------
540
+  (0.1ms) rollback transaction
541
+  (0.1ms) begin transaction
542
+ -------------------------------------------
543
+ FormTest: test_fill_form_with_missing_param
544
+ -------------------------------------------
545
+  (0.4ms) rollback transaction
546
+  (0.0ms) begin transaction
547
+ ---------------------------------
548
+ FormTest: test_new_form_from_path
549
+ ---------------------------------
550
+  (0.1ms) rollback transaction
551
+  (0.0ms) begin transaction
552
+ --------------------------------------------------
553
+ FormTest: test_form_from_valid_path_but_wrong_html
554
+ --------------------------------------------------
555
+  (0.1ms) rollback transaction
556
+  (0.5ms) begin transaction
557
+ --------------------------------------------
558
+ FormTest: test_form_from_invalid_direct_html
559
+ --------------------------------------------
560
+  (0.0ms) rollback transaction
561
+  (0.1ms) begin transaction
562
+ -------------------------------------
563
+ FormTest: test_from_from_invalid_path
564
+ -------------------------------------
565
+  (0.1ms) rollback transaction
566
+  (0.1ms) begin transaction
567
+ ----------------------------------
568
+ FormTest: test_form_invalid_params
569
+ ----------------------------------
570
+  (0.0ms) rollback transaction
571
+  (0.1ms) begin transaction
572
+ ----------------------------
573
+ FormTest: test_export_to_pdf
574
+ ----------------------------
575
+  (0.1ms) rollback transaction
576
+  (0.1ms) begin transaction
577
+ -----------------------------------------------------
578
+ FormTest: test_fill_form_with_missing_required_fields
579
+ -----------------------------------------------------
580
+  (0.1ms) rollback transaction
581
+  (0.1ms) begin transaction
582
+ ---------------------------------------
583
+ FormalizerConfigTest: test_valid_config
584
+ ---------------------------------------
585
+  (0.1ms) rollback transaction
586
+  (0.1ms) begin transaction
587
+ -----------------------------------------
588
+ FormalizerConfigTest: test_invalid_config
589
+ -----------------------------------------
590
+  (0.1ms) rollback transaction
591
+  (0.0ms) begin transaction
592
+ --------------------------------------------
593
+ FormTest: test_form_from_invalid_direct_html
594
+ --------------------------------------------
595
+  (0.1ms) rollback transaction
596
+  (0.1ms) begin transaction
597
+ ----------------------------------
598
+ FormTest: test_form_invalid_params
599
+ ----------------------------------
600
+  (0.0ms) rollback transaction
601
+  (0.1ms) begin transaction
602
+ -------------------------------------
603
+ FormTest: test_from_from_invalid_path
604
+ -------------------------------------
605
+  (0.1ms) rollback transaction
606
+  (0.1ms) begin transaction
607
+ --------------------------------------------------
608
+ FormTest: test_form_from_valid_path_but_wrong_html
609
+ --------------------------------------------------
610
+  (0.1ms) rollback transaction
611
+  (0.1ms) begin transaction
612
+ ------------------------
613
+ FormTest: test_fill_form
614
+ ------------------------
615
+  (0.2ms) rollback transaction
616
+  (0.1ms) begin transaction
617
+ -----------------------------------------------------
618
+ FormTest: test_fill_form_with_missing_required_fields
619
+ -----------------------------------------------------
620
+  (0.0ms) rollback transaction
621
+  (0.3ms) begin transaction
622
+ ---------------------------------
623
+ FormTest: test_new_form_from_path
624
+ ---------------------------------
625
+  (0.0ms) rollback transaction
626
+  (0.1ms) begin transaction
627
+ -------------------------------------------
628
+ FormTest: test_fill_form_with_missing_param
629
+ -------------------------------------------
630
+  (0.0ms) rollback transaction
631
+  (0.1ms) begin transaction
632
+ ----------------------------
633
+ FormTest: test_export_to_pdf
634
+ ----------------------------
635
+  (0.1ms) rollback transaction
636
+  (0.1ms) begin transaction
637
+ ------------------------------
638
+ UtilsTest: test_file_not_found
639
+ ------------------------------
640
+  (0.1ms) rollback transaction
641
+  (0.1ms) begin transaction
642
+ --------------------------
643
+ UtilsTest: test_file_found
644
+ --------------------------
645
+  (0.1ms) rollback transaction
646
+  (0.1ms) begin transaction
647
+ -------------------------------------------
648
+ FormalizerTest: test_formalizer_fill_fields
649
+ -------------------------------------------
650
+  (0.2ms) rollback transaction
651
+  (0.1ms) begin transaction
652
+ -------------------------
653
+ FormalizerTest: test_tags
654
+ -------------------------
655
+  (0.1ms) rollback transaction
656
+  (0.1ms) begin transaction
657
+ --------------------------------------------
658
+ FormalizerFormFieldTest: test_add_form_field
659
+ --------------------------------------------
660
+  (0.1ms) rollback transaction
661
+  (0.1ms) begin transaction
662
+ ----------------------------------------
663
+ FormalizerFormTest: test_add_form_errors
664
+ ----------------------------------------
665
+  (0.1ms) rollback transaction
666
+  (0.1ms) begin transaction
667
+ -------------------------------------------
668
+ FormFieldTest: test_form_field_valid_params
669
+ -------------------------------------------
670
+  (0.0ms) rollback transaction
671
+  (0.1ms) begin transaction
672
+ ----------------------------------------
673
+ FormFieldTest: test_set_form_field_value
674
+ ----------------------------------------
675
+  (0.1ms) rollback transaction
676
+  (0.1ms) begin transaction
677
+ ---------------------------------------------
678
+ FormFieldTest: test_form_field_invalid_params
679
+ ---------------------------------------------
680
+  (0.1ms) rollback transaction
681
+  (0.3ms) begin transaction
682
+ ----------------------------
683
+ FormTest: test_export_to_pdf
684
+ ----------------------------
685
+  (0.1ms) rollback transaction
686
+  (0.1ms) begin transaction
687
+ -------------------------------------------
688
+ FormTest: test_fill_form_with_missing_param
689
+ -------------------------------------------
690
+  (0.1ms) rollback transaction
691
+  (0.1ms) begin transaction
692
+ ---------------------------------
693
+ FormTest: test_new_form_from_path
694
+ ---------------------------------
695
+  (0.1ms) rollback transaction
696
+  (0.1ms) begin transaction
697
+ -------------------------------------
698
+ FormTest: test_from_from_invalid_path
699
+ -------------------------------------
700
+  (0.1ms) rollback transaction
701
+  (0.1ms) begin transaction
702
+ --------------------------------------------------
703
+ FormTest: test_form_from_valid_path_but_wrong_html
704
+ --------------------------------------------------
705
+  (0.1ms) rollback transaction
706
+  (0.1ms) begin transaction
707
+ ------------------------
708
+ FormTest: test_fill_form
709
+ ------------------------
710
+  (0.1ms) rollback transaction
711
+  (0.2ms) begin transaction
712
+ -----------------------------------------------------
713
+ FormTest: test_fill_form_with_missing_required_fields
714
+ -----------------------------------------------------
715
+  (0.1ms) rollback transaction
716
+  (0.1ms) begin transaction
717
+ ----------------------------------
718
+ FormTest: test_form_invalid_params
719
+ ----------------------------------
720
+  (0.1ms) rollback transaction
721
+  (0.1ms) begin transaction
722
+ --------------------------------------------
723
+ FormTest: test_form_from_invalid_direct_html
724
+ --------------------------------------------
725
+  (0.1ms) rollback transaction
726
+  (0.1ms) begin transaction
727
+ ----------------------------------------
728
+ FormalizerFormTest: test_add_form_errors
729
+ ----------------------------------------
730
+  (0.1ms) rollback transaction
731
+  (0.1ms) begin transaction
732
+ -------------------------------------------
733
+ FormFieldTest: test_form_field_valid_params
734
+ -------------------------------------------
735
+  (0.0ms) rollback transaction
736
+  (0.1ms) begin transaction
737
+ ---------------------------------------------
738
+ FormFieldTest: test_form_field_invalid_params
739
+ ---------------------------------------------
740
+  (0.0ms) rollback transaction
741
+  (0.1ms) begin transaction
742
+ ----------------------------------------
743
+ FormFieldTest: test_set_form_field_value
744
+ ----------------------------------------
745
+  (0.0ms) rollback transaction
746
+  (0.0ms) begin transaction
747
+ ----------------------------------------
748
+ FormalizerTest: test_fill_and_export_pdf
749
+ ----------------------------------------
750
+  (0.1ms) rollback transaction
751
+  (0.1ms) begin transaction
752
+ -------------------------
753
+ FormalizerTest: test_tags
754
+ -------------------------
755
+  (0.1ms) rollback transaction
756
+  (0.1ms) begin transaction
757
+ -------------------------------------------
758
+ FormalizerTest: test_formalizer_fill_fields
759
+ -------------------------------------------
760
+  (0.1ms) rollback transaction
761
+  (0.1ms) begin transaction
762
+ --------------------------------------------
763
+ FormalizerFormFieldTest: test_add_form_field
764
+ --------------------------------------------
765
+  (0.1ms) rollback transaction
766
+  (0.1ms) begin transaction
767
+ ---------------------------------------
768
+ FormalizerConfigTest: test_valid_config
769
+ ---------------------------------------
770
+  (0.1ms) rollback transaction
771
+  (0.1ms) begin transaction
772
+ -----------------------------------------
773
+ FormalizerConfigTest: test_invalid_config
774
+ -----------------------------------------
775
+  (0.1ms) rollback transaction
776
+  (0.8ms) begin transaction
777
+ --------------------------
778
+ UtilsTest: test_file_found
779
+ --------------------------
780
+  (0.1ms) rollback transaction
781
+  (0.0ms) begin transaction
782
+ ------------------------------
783
+ UtilsTest: test_file_not_found
784
+ ------------------------------
785
+  (0.1ms) rollback transaction
786
+  (0.1ms) begin transaction
787
+ ----------------------------------------
788
+ FormalizerFormTest: test_add_form_errors
789
+ ----------------------------------------
790
+  (0.1ms) rollback transaction
791
+  (0.1ms) begin transaction
792
+ --------------------------------------------
793
+ FormalizerFormFieldTest: test_add_form_field
794
+ --------------------------------------------
795
+  (0.1ms) rollback transaction
796
+  (0.3ms) begin transaction
797
+ ----------------------------------------
798
+ FormalizerTest: test_fill_and_export_pdf
799
+ ----------------------------------------
800
+  (0.1ms) rollback transaction
801
+  (0.3ms) begin transaction
802
+ -------------------------------------------
803
+ FormalizerTest: test_formalizer_fill_fields
804
+ -------------------------------------------
805
+  (0.1ms) rollback transaction
806
+  (0.1ms) begin transaction
807
+ -------------------------
808
+ FormalizerTest: test_tags
809
+ -------------------------
810
+  (0.1ms) rollback transaction
811
+  (0.0ms) begin transaction
812
+ -------------------------------------------
813
+ FormFieldTest: test_form_field_valid_params
814
+ -------------------------------------------
815
+  (0.0ms) rollback transaction
816
+  (0.0ms) begin transaction
817
+ ---------------------------------------------
818
+ FormFieldTest: test_form_field_invalid_params
819
+ ---------------------------------------------
820
+  (0.0ms) rollback transaction
821
+  (0.1ms) begin transaction
822
+ ----------------------------------------
823
+ FormFieldTest: test_set_form_field_value
824
+ ----------------------------------------
825
+  (0.0ms) rollback transaction
826
+  (0.1ms) begin transaction
827
+ ----------------------------
828
+ FormTest: test_export_to_pdf
829
+ ----------------------------
830
+  (0.2ms) rollback transaction
831
+  (0.1ms) begin transaction
832
+ -----------------------------------------------------
833
+ FormTest: test_fill_form_with_missing_required_fields
834
+ -----------------------------------------------------
835
+  (0.1ms) rollback transaction
836
+  (0.1ms) begin transaction
837
+ --------------------------------------------
838
+ FormTest: test_form_from_invalid_direct_html
839
+ --------------------------------------------
840
+  (0.7ms) rollback transaction
841
+  (0.1ms) begin transaction
842
+ -------------------------------------------
843
+ FormTest: test_fill_form_with_missing_param
844
+ -------------------------------------------
845
+  (0.1ms) rollback transaction
846
+  (0.1ms) begin transaction
847
+ ----------------------------------
848
+ FormTest: test_form_invalid_params
849
+ ----------------------------------
850
+  (0.1ms) rollback transaction
851
+  (0.1ms) begin transaction
852
+ ---------------------------------
853
+ FormTest: test_new_form_from_path
854
+ ---------------------------------
855
+  (0.1ms) rollback transaction
856
+  (0.1ms) begin transaction
857
+ ------------------------
858
+ FormTest: test_fill_form
859
+ ------------------------
860
+  (0.0ms) rollback transaction
861
+  (0.1ms) begin transaction
862
+ -------------------------------------
863
+ FormTest: test_from_from_invalid_path
864
+ -------------------------------------
865
+  (0.1ms) rollback transaction
866
+  (0.1ms) begin transaction
867
+ --------------------------------------------------
868
+ FormTest: test_form_from_valid_path_but_wrong_html
869
+ --------------------------------------------------
870
+  (0.1ms) rollback transaction
871
+  (0.1ms) begin transaction
872
+ --------------------------
873
+ UtilsTest: test_file_found
874
+ --------------------------
875
+  (0.0ms) rollback transaction
876
+  (0.1ms) begin transaction
877
+ ------------------------------
878
+ UtilsTest: test_file_not_found
879
+ ------------------------------
880
+  (0.0ms) rollback transaction
881
+  (0.1ms) begin transaction
882
+ -----------------------------------------
883
+ FormalizerConfigTest: test_invalid_config
884
+ -----------------------------------------
885
+  (0.1ms) rollback transaction
886
+  (0.1ms) begin transaction
887
+ ---------------------------------------
888
+ FormalizerConfigTest: test_valid_config
889
+ ---------------------------------------
890
+  (0.1ms) rollback transaction
891
+  (0.1ms) begin transaction
892
+ ---------------------------------------------
893
+ FormFieldTest: test_form_field_invalid_params
894
+ ---------------------------------------------
895
+  (0.1ms) rollback transaction
896
+  (0.1ms) begin transaction
897
+ ----------------------------------------
898
+ FormFieldTest: test_set_form_field_value
899
+ ----------------------------------------
900
+  (0.1ms) rollback transaction
901
+  (0.1ms) begin transaction
902
+ -------------------------------------------
903
+ FormFieldTest: test_form_field_valid_params
904
+ -------------------------------------------
905
+  (0.0ms) rollback transaction
906
+  (0.1ms) begin transaction
907
+ ----------------------------------------
908
+ FormalizerFormTest: test_add_form_errors
909
+ ----------------------------------------
910
+  (0.1ms) rollback transaction
911
+  (0.0ms) begin transaction
912
+ ------------------------------
913
+ UtilsTest: test_file_not_found
914
+ ------------------------------
915
+  (0.0ms) rollback transaction
916
+  (0.1ms) begin transaction
917
+ --------------------------
918
+ UtilsTest: test_file_found
919
+ --------------------------
920
+  (0.0ms) rollback transaction
921
+  (0.2ms) begin transaction
922
+ -------------------------
923
+ FormalizerTest: test_tags
924
+ -------------------------
925
+  (0.1ms) rollback transaction
926
+  (0.1ms) begin transaction
927
+ -------------------------------------------
928
+ FormalizerTest: test_formalizer_fill_fields
929
+ -------------------------------------------
930
+  (0.1ms) rollback transaction
931
+  (0.1ms) begin transaction
932
+ ----------------------------------------
933
+ FormalizerTest: test_fill_and_export_pdf
934
+ ----------------------------------------
935
+  (0.1ms) rollback transaction
936
+  (0.1ms) begin transaction
937
+ --------------------------------------------
938
+ FormalizerFormFieldTest: test_add_form_field
939
+ --------------------------------------------
940
+  (0.1ms) rollback transaction
941
+  (0.1ms) begin transaction
942
+ ---------------------------------
943
+ FormTest: test_new_form_from_path
944
+ ---------------------------------
945
+  (1.0ms) rollback transaction
946
+  (0.1ms) begin transaction
947
+ -----------------------------------------------------
948
+ FormTest: test_fill_form_with_missing_required_fields
949
+ -----------------------------------------------------
950
+  (0.0ms) rollback transaction
951
+  (0.1ms) begin transaction
952
+ --------------------------------------------------
953
+ FormTest: test_form_from_valid_path_but_wrong_html
954
+ --------------------------------------------------
955
+  (0.1ms) rollback transaction
956
+  (0.1ms) begin transaction
957
+ -------------------------------------------
958
+ FormTest: test_fill_form_with_missing_param
959
+ -------------------------------------------
960
+  (0.1ms) rollback transaction
961
+  (0.0ms) begin transaction
962
+ ------------------------
963
+ FormTest: test_fill_form
964
+ ------------------------
965
+  (0.0ms) rollback transaction
966
+  (0.4ms) begin transaction
967
+ --------------------------------------------
968
+ FormTest: test_form_from_invalid_direct_html
969
+ --------------------------------------------
970
+  (0.1ms) rollback transaction
971
+  (0.1ms) begin transaction
972
+ -------------------------------------
973
+ FormTest: test_from_from_invalid_path
974
+ -------------------------------------
975
+  (0.1ms) rollback transaction
976
+  (0.1ms) begin transaction
977
+ ----------------------------------
978
+ FormTest: test_form_invalid_params
979
+ ----------------------------------
980
+  (0.0ms) rollback transaction
981
+  (0.1ms) begin transaction
982
+ ----------------------------
983
+ FormTest: test_export_to_pdf
984
+ ----------------------------
985
+  (0.2ms) rollback transaction
986
+  (0.1ms) begin transaction
987
+ -----------------------------------------
988
+ FormalizerConfigTest: test_invalid_config
989
+ -----------------------------------------
990
+  (0.1ms) rollback transaction
991
+  (0.1ms) begin transaction
992
+ ---------------------------------------
993
+ FormalizerConfigTest: test_valid_config
994
+ ---------------------------------------
995
+  (0.1ms) rollback transaction
996
+  (0.1ms) begin transaction
997
+ --------------------------------------------------
998
+ FormTest: test_form_from_valid_path_but_wrong_html
999
+ --------------------------------------------------
1000
+  (0.1ms) rollback transaction
1001
+  (0.1ms) begin transaction
1002
+ -------------------------------------
1003
+ FormTest: test_from_from_invalid_path
1004
+ -------------------------------------
1005
+  (0.0ms) rollback transaction
1006
+  (0.1ms) begin transaction
1007
+ ----------------------------
1008
+ FormTest: test_export_to_pdf
1009
+ ----------------------------
1010
+  (0.1ms) rollback transaction
1011
+  (0.1ms) begin transaction
1012
+ --------------------------------------------
1013
+ FormTest: test_form_from_invalid_direct_html
1014
+ --------------------------------------------
1015
+  (0.1ms) rollback transaction
1016
+  (0.1ms) begin transaction
1017
+ ----------------------------------
1018
+ FormTest: test_form_invalid_params
1019
+ ----------------------------------
1020
+  (0.1ms) rollback transaction
1021
+  (0.1ms) begin transaction
1022
+ ---------------------------------
1023
+ FormTest: test_new_form_from_path
1024
+ ---------------------------------
1025
+  (0.1ms) rollback transaction
1026
+  (0.1ms) begin transaction
1027
+ -------------------------------------------
1028
+ FormTest: test_fill_form_with_missing_param
1029
+ -------------------------------------------
1030
+  (0.1ms) rollback transaction
1031
+  (0.1ms) begin transaction
1032
+ ------------------------
1033
+ FormTest: test_fill_form
1034
+ ------------------------
1035
+  (0.1ms) rollback transaction
1036
+  (0.1ms) begin transaction
1037
+ -----------------------------------------------------
1038
+ FormTest: test_fill_form_with_missing_required_fields
1039
+ -----------------------------------------------------
1040
+  (0.1ms) rollback transaction
1041
+  (0.0ms) begin transaction
1042
+ ---------------------------------------------
1043
+ FormFieldTest: test_form_field_invalid_params
1044
+ ---------------------------------------------
1045
+  (0.0ms) rollback transaction
1046
+  (0.1ms) begin transaction
1047
+ -------------------------------------------
1048
+ FormFieldTest: test_form_field_valid_params
1049
+ -------------------------------------------
1050
+  (0.1ms) rollback transaction
1051
+  (0.1ms) begin transaction
1052
+ ----------------------------------------
1053
+ FormFieldTest: test_set_form_field_value
1054
+ ----------------------------------------
1055
+  (0.0ms) rollback transaction
1056
+  (0.1ms) begin transaction
1057
+ ----------------------------------------
1058
+ FormalizerTest: test_fill_and_export_pdf
1059
+ ----------------------------------------
1060
+  (0.1ms) rollback transaction
1061
+  (0.1ms) begin transaction
1062
+ -------------------------
1063
+ FormalizerTest: test_tags
1064
+ -------------------------
1065
+  (0.1ms) rollback transaction
1066
+  (0.1ms) begin transaction
1067
+ -------------------------------------------
1068
+ FormalizerTest: test_formalizer_fill_fields
1069
+ -------------------------------------------
1070
+  (0.1ms) rollback transaction
1071
+  (0.1ms) begin transaction
1072
+ -----------------------------------------
1073
+ FormalizerConfigTest: test_invalid_config
1074
+ -----------------------------------------
1075
+  (0.1ms) rollback transaction
1076
+  (0.0ms) begin transaction
1077
+ ---------------------------------------
1078
+ FormalizerConfigTest: test_valid_config
1079
+ ---------------------------------------
1080
+  (0.1ms) rollback transaction
1081
+  (0.1ms) begin transaction
1082
+ --------------------------------------------
1083
+ FormalizerFormFieldTest: test_add_form_field
1084
+ --------------------------------------------
1085
+  (0.1ms) rollback transaction
1086
+  (0.1ms) begin transaction
1087
+ ----------------------------------------
1088
+ FormalizerFormTest: test_add_form_errors
1089
+ ----------------------------------------
1090
+  (0.1ms) rollback transaction
1091
+  (0.1ms) begin transaction
1092
+ --------------------------
1093
+ UtilsTest: test_file_found
1094
+ --------------------------
1095
+  (0.1ms) rollback transaction
1096
+  (0.1ms) begin transaction
1097
+ ------------------------------
1098
+ UtilsTest: test_file_not_found
1099
+ ------------------------------
1100
+  (0.1ms) rollback transaction
1101
+  (0.1ms) begin transaction
1102
+ ----------------------------------------
1103
+ FormalizerTest: test_fill_and_export_pdf
1104
+ ----------------------------------------
1105
+  (0.1ms) rollback transaction
1106
+  (0.3ms) begin transaction
1107
+ -------------------------
1108
+ FormalizerTest: test_tags
1109
+ -------------------------
1110
+  (0.1ms) rollback transaction
1111
+  (0.0ms) begin transaction
1112
+ -------------------------------------------
1113
+ FormalizerTest: test_formalizer_fill_fields
1114
+ -------------------------------------------
1115
+  (0.1ms) rollback transaction
1116
+  (0.1ms) begin transaction
1117
+ -----------------------------------------
1118
+ FormalizerConfigTest: test_invalid_config
1119
+ -----------------------------------------
1120
+  (0.1ms) rollback transaction
1121
+  (0.1ms) begin transaction
1122
+ ---------------------------------------
1123
+ FormalizerConfigTest: test_valid_config
1124
+ ---------------------------------------
1125
+  (0.1ms) rollback transaction
1126
+  (0.0ms) begin transaction
1127
+ ---------------------------------------------
1128
+ FormFieldTest: test_form_field_invalid_params
1129
+ ---------------------------------------------
1130
+  (0.0ms) rollback transaction
1131
+  (0.1ms) begin transaction
1132
+ -------------------------------------------
1133
+ FormFieldTest: test_form_field_valid_params
1134
+ -------------------------------------------
1135
+  (0.1ms) rollback transaction
1136
+  (0.1ms) begin transaction
1137
+ ----------------------------------------
1138
+ FormFieldTest: test_set_form_field_value
1139
+ ----------------------------------------
1140
+  (0.0ms) rollback transaction
1141
+  (0.2ms) begin transaction
1142
+ ----------------------------------
1143
+ FormTest: test_form_invalid_params
1144
+ ----------------------------------
1145
+  (0.1ms) rollback transaction
1146
+  (0.1ms) begin transaction
1147
+ ------------------------
1148
+ FormTest: test_fill_form
1149
+ ------------------------
1150
+  (0.0ms) rollback transaction
1151
+  (0.0ms) begin transaction
1152
+ -------------------------------------
1153
+ FormTest: test_from_from_invalid_path
1154
+ -------------------------------------
1155
+  (0.1ms) rollback transaction
1156
+  (0.0ms) begin transaction
1157
+ -----------------------------------------------------
1158
+ FormTest: test_fill_form_with_missing_required_fields
1159
+ -----------------------------------------------------
1160
+  (0.1ms) rollback transaction
1161
+  (0.1ms) begin transaction
1162
+ --------------------------------------------------
1163
+ FormTest: test_form_from_valid_path_but_wrong_html
1164
+ --------------------------------------------------
1165
+  (0.5ms) rollback transaction
1166
+  (0.1ms) begin transaction
1167
+ --------------------------------------------
1168
+ FormTest: test_form_from_invalid_direct_html
1169
+ --------------------------------------------
1170
+  (0.1ms) rollback transaction
1171
+  (0.1ms) begin transaction
1172
+ -------------------------------------------
1173
+ FormTest: test_fill_form_with_missing_param
1174
+ -------------------------------------------
1175
+  (0.1ms) rollback transaction
1176
+  (0.1ms) begin transaction
1177
+ ----------------------------
1178
+ FormTest: test_export_to_pdf
1179
+ ----------------------------
1180
+  (0.1ms) rollback transaction
1181
+  (0.1ms) begin transaction
1182
+ ---------------------------------
1183
+ FormTest: test_new_form_from_path
1184
+ ---------------------------------
1185
+  (0.1ms) rollback transaction
1186
+  (0.5ms) begin transaction
1187
+ ----------------------------------------
1188
+ FormalizerFormTest: test_add_form_errors
1189
+ ----------------------------------------
1190
+  (0.1ms) rollback transaction
1191
+  (0.1ms) begin transaction
1192
+ ------------------------------
1193
+ UtilsTest: test_file_not_found
1194
+ ------------------------------
1195
+  (0.1ms) rollback transaction
1196
+  (0.1ms) begin transaction
1197
+ --------------------------
1198
+ UtilsTest: test_file_found
1199
+ --------------------------
1200
+  (0.1ms) rollback transaction
1201
+  (0.0ms) begin transaction
1202
+ --------------------------------------------
1203
+ FormalizerFormFieldTest: test_add_form_field
1204
+ --------------------------------------------
1205
+  (0.1ms) rollback transaction
1206
+  (0.3ms) begin transaction
1207
+ --------------------------------------------
1208
+ FormTest: test_form_from_invalid_direct_html
1209
+ --------------------------------------------
1210
+  (0.1ms) rollback transaction
1211
+  (0.1ms) begin transaction
1212
+ ----------------------------------
1213
+ FormTest: test_form_invalid_params
1214
+ ----------------------------------
1215
+  (0.1ms) rollback transaction
1216
+  (0.1ms) begin transaction
1217
+ --------------------------------------------------
1218
+ FormTest: test_form_from_valid_path_but_wrong_html
1219
+ --------------------------------------------------
1220
+  (0.1ms) rollback transaction
1221
+  (0.1ms) begin transaction
1222
+ ----------------------------
1223
+ FormTest: test_export_to_pdf
1224
+ ----------------------------
1225
+  (0.1ms) rollback transaction
1226
+  (0.1ms) begin transaction
1227
+ ------------------------
1228
+ FormTest: test_fill_form
1229
+ ------------------------
1230
+  (0.1ms) rollback transaction
1231
+  (0.1ms) begin transaction
1232
+ -------------------------------------
1233
+ FormTest: test_from_from_invalid_path
1234
+ -------------------------------------
1235
+  (0.1ms) rollback transaction
1236
+  (0.1ms) begin transaction
1237
+ -----------------------------------------------------
1238
+ FormTest: test_fill_form_with_missing_required_fields
1239
+ -----------------------------------------------------
1240
+  (0.0ms) rollback transaction
1241
+  (0.1ms) begin transaction
1242
+ -------------------------------------------
1243
+ FormTest: test_fill_form_with_missing_param
1244
+ -------------------------------------------
1245
+  (0.1ms) rollback transaction
1246
+  (0.1ms) begin transaction
1247
+ ---------------------------------
1248
+ FormTest: test_new_form_from_path
1249
+ ---------------------------------
1250
+  (0.1ms) rollback transaction
1251
+  (0.1ms) begin transaction
1252
+ ----------------------------------------
1253
+ FormalizerFormTest: test_add_form_errors
1254
+ ----------------------------------------
1255
+  (0.1ms) rollback transaction
1256
+  (0.1ms) begin transaction
1257
+ ----------------------------------------
1258
+ FormalizerTest: test_fill_and_export_pdf
1259
+ ----------------------------------------
1260
+  (0.1ms) rollback transaction
1261
+  (0.1ms) begin transaction
1262
+ -------------------------------------------
1263
+ FormalizerTest: test_formalizer_fill_fields
1264
+ -------------------------------------------
1265
+  (0.1ms) rollback transaction
1266
+  (0.1ms) begin transaction
1267
+ -------------------------
1268
+ FormalizerTest: test_tags
1269
+ -------------------------
1270
+  (0.1ms) rollback transaction
1271
+  (0.1ms) begin transaction
1272
+ ---------------------------------------
1273
+ FormalizerConfigTest: test_valid_config
1274
+ ---------------------------------------
1275
+  (0.1ms) rollback transaction
1276
+  (0.0ms) begin transaction
1277
+ -----------------------------------------
1278
+ FormalizerConfigTest: test_invalid_config
1279
+ -----------------------------------------
1280
+  (0.1ms) rollback transaction
1281
+  (0.1ms) begin transaction
1282
+ --------------------------
1283
+ UtilsTest: test_file_found
1284
+ --------------------------
1285
+  (0.1ms) rollback transaction
1286
+  (0.1ms) begin transaction
1287
+ ------------------------------
1288
+ UtilsTest: test_file_not_found
1289
+ ------------------------------
1290
+  (0.0ms) rollback transaction
1291
+  (0.0ms) begin transaction
1292
+ -------------------------------------------
1293
+ FormFieldTest: test_form_field_valid_params
1294
+ -------------------------------------------
1295
+  (0.0ms) rollback transaction
1296
+  (0.1ms) begin transaction
1297
+ ---------------------------------------------
1298
+ FormFieldTest: test_form_field_invalid_params
1299
+ ---------------------------------------------
1300
+  (0.0ms) rollback transaction
1301
+  (0.1ms) begin transaction
1302
+ ----------------------------------------
1303
+ FormFieldTest: test_set_form_field_value
1304
+ ----------------------------------------
1305
+  (0.0ms) rollback transaction
1306
+  (0.0ms) begin transaction
1307
+ --------------------------------------------
1308
+ FormalizerFormFieldTest: test_add_form_field
1309
+ --------------------------------------------
1310
+  (0.1ms) rollback transaction
1311
+  (0.1ms) begin transaction
1312
+ -------------------------------------------
1313
+ FormalizerTest: test_formalizer_fill_fields
1314
+ -------------------------------------------
1315
+  (0.1ms) rollback transaction
1316
+  (0.1ms) begin transaction
1317
+ ----------------------------------------
1318
+ FormalizerTest: test_fill_and_export_pdf
1319
+ ----------------------------------------
1320
+  (0.1ms) rollback transaction
1321
+  (0.1ms) begin transaction
1322
+ -------------------------
1323
+ FormalizerTest: test_tags
1324
+ -------------------------
1325
+  (0.1ms) rollback transaction
1326
+  (0.1ms) begin transaction
1327
+ ----------------------------
1328
+ FormTest: test_export_to_pdf
1329
+ ----------------------------
1330
+  (0.2ms) rollback transaction
1331
+  (0.1ms) begin transaction
1332
+ ----------------------------------
1333
+ FormTest: test_form_invalid_params
1334
+ ----------------------------------
1335
+  (0.1ms) rollback transaction
1336
+  (0.1ms) begin transaction
1337
+ -------------------------------------
1338
+ FormTest: test_from_from_invalid_path
1339
+ -------------------------------------
1340
+  (0.5ms) rollback transaction
1341
+  (0.1ms) begin transaction
1342
+ --------------------------------------------------
1343
+ FormTest: test_form_from_valid_path_but_wrong_html
1344
+ --------------------------------------------------
1345
+  (0.1ms) rollback transaction
1346
+  (0.1ms) begin transaction
1347
+ --------------------------------------------
1348
+ FormTest: test_form_from_invalid_direct_html
1349
+ --------------------------------------------
1350
+  (0.1ms) rollback transaction
1351
+  (0.1ms) begin transaction
1352
+ -----------------------------------------------------
1353
+ FormTest: test_fill_form_with_missing_required_fields
1354
+ -----------------------------------------------------
1355
+  (0.1ms) rollback transaction
1356
+  (0.3ms) begin transaction
1357
+ -------------------------------------------
1358
+ FormTest: test_fill_form_with_missing_param
1359
+ -------------------------------------------
1360
+  (0.1ms) rollback transaction
1361
+  (0.1ms) begin transaction
1362
+ ---------------------------------
1363
+ FormTest: test_new_form_from_path
1364
+ ---------------------------------
1365
+  (0.1ms) rollback transaction
1366
+  (0.1ms) begin transaction
1367
+ ------------------------
1368
+ FormTest: test_fill_form
1369
+ ------------------------
1370
+  (0.1ms) rollback transaction
1371
+  (0.0ms) begin transaction
1372
+ --------------------------------------------
1373
+ FormalizerFormFieldTest: test_add_form_field
1374
+ --------------------------------------------
1375
+  (0.1ms) rollback transaction
1376
+  (0.1ms) begin transaction
1377
+ -----------------------------------------
1378
+ FormalizerConfigTest: test_invalid_config
1379
+ -----------------------------------------
1380
+  (0.1ms) rollback transaction
1381
+  (0.1ms) begin transaction
1382
+ ---------------------------------------
1383
+ FormalizerConfigTest: test_valid_config
1384
+ ---------------------------------------
1385
+  (0.1ms) rollback transaction
1386
+  (0.2ms) begin transaction
1387
+ ----------------------------------------
1388
+ FormalizerFormTest: test_add_form_errors
1389
+ ----------------------------------------
1390
+  (0.1ms) rollback transaction
1391
+  (0.1ms) begin transaction
1392
+ ----------------------------------------
1393
+ FormFieldTest: test_set_form_field_value
1394
+ ----------------------------------------
1395
+  (0.0ms) rollback transaction
1396
+  (0.1ms) begin transaction
1397
+ -------------------------------------------
1398
+ FormFieldTest: test_form_field_valid_params
1399
+ -------------------------------------------
1400
+  (0.0ms) rollback transaction
1401
+  (0.1ms) begin transaction
1402
+ ---------------------------------------------
1403
+ FormFieldTest: test_form_field_invalid_params
1404
+ ---------------------------------------------
1405
+  (0.0ms) rollback transaction
1406
+  (0.4ms) begin transaction
1407
+ --------------------------
1408
+ UtilsTest: test_file_found
1409
+ --------------------------
1410
+  (0.1ms) rollback transaction
1411
+  (0.1ms) begin transaction
1412
+ ------------------------------
1413
+ UtilsTest: test_file_not_found
1414
+ ------------------------------
1415
+  (0.0ms) rollback transaction
1416
+  (0.1ms) begin transaction
1417
+ --------------------------
1418
+ UtilsTest: test_file_found
1419
+ --------------------------
1420
+  (0.1ms) rollback transaction
1421
+  (0.1ms) begin transaction
1422
+ ------------------------------
1423
+ UtilsTest: test_file_not_found
1424
+ ------------------------------
1425
+  (0.0ms) rollback transaction
1426
+  (0.0ms) begin transaction
1427
+ ----------------------------------------
1428
+ FormFieldTest: test_set_form_field_value
1429
+ ----------------------------------------
1430
+  (0.1ms) rollback transaction
1431
+  (0.2ms) begin transaction
1432
+ -------------------------------------------
1433
+ FormFieldTest: test_form_field_valid_params
1434
+ -------------------------------------------
1435
+  (0.1ms) rollback transaction
1436
+  (0.1ms) begin transaction
1437
+ ---------------------------------------------
1438
+ FormFieldTest: test_form_field_invalid_params
1439
+ ---------------------------------------------
1440
+  (0.0ms) rollback transaction
1441
+  (0.1ms) begin transaction
1442
+ -----------------------------------------
1443
+ FormalizerTest: test_fill_and_export_html
1444
+ -----------------------------------------
1445
+  (0.1ms) rollback transaction
1446
+  (0.1ms) begin transaction
1447
+ -------------------------------------------
1448
+ FormalizerTest: test_formalizer_fill_fields
1449
+ -------------------------------------------
1450
+  (0.2ms) rollback transaction
1451
+  (0.1ms) begin transaction
1452
+ ----------------------------------------
1453
+ FormalizerTest: test_fill_and_export_pdf
1454
+ ----------------------------------------
1455
+  (0.3ms) rollback transaction
1456
+  (0.2ms) begin transaction
1457
+ -------------------------
1458
+ FormalizerTest: test_tags
1459
+ -------------------------
1460
+  (0.1ms) rollback transaction
1461
+  (0.1ms) begin transaction
1462
+ -----------------------------------------
1463
+ FormalizerConfigTest: test_invalid_config
1464
+ -----------------------------------------
1465
+  (0.1ms) rollback transaction
1466
+  (0.1ms) begin transaction
1467
+ ---------------------------------------
1468
+ FormalizerConfigTest: test_valid_config
1469
+ ---------------------------------------
1470
+  (0.1ms) rollback transaction
1471
+  (0.3ms) begin transaction
1472
+ ----------------------------------------
1473
+ FormalizerFormTest: test_add_form_errors
1474
+ ----------------------------------------
1475
+  (0.1ms) rollback transaction
1476
+  (1.0ms) begin transaction
1477
+ --------------------------------------------
1478
+ FormalizerFormFieldTest: test_add_form_field
1479
+ --------------------------------------------
1480
+  (0.1ms) rollback transaction
1481
+  (0.1ms) begin transaction
1482
+ ----------------------------------
1483
+ FormTest: test_form_invalid_params
1484
+ ----------------------------------
1485
+  (0.1ms) rollback transaction
1486
+  (0.1ms) begin transaction
1487
+ -------------------------------------
1488
+ FormTest: test_from_from_invalid_path
1489
+ -------------------------------------
1490
+  (0.1ms) rollback transaction
1491
+  (0.1ms) begin transaction
1492
+ -----------------------------------------------------
1493
+ FormTest: test_fill_form_with_missing_required_fields
1494
+ -----------------------------------------------------
1495
+  (0.1ms) rollback transaction
1496
+  (0.1ms) begin transaction
1497
+ --------------------------------------------
1498
+ FormTest: test_form_from_invalid_direct_html
1499
+ --------------------------------------------
1500
+  (0.1ms) rollback transaction
1501
+  (0.1ms) begin transaction
1502
+ --------------------------------------------------
1503
+ FormTest: test_form_from_valid_path_but_wrong_html
1504
+ --------------------------------------------------
1505
+  (0.1ms) rollback transaction
1506
+  (0.1ms) begin transaction
1507
+ ----------------------------
1508
+ FormTest: test_export_to_pdf
1509
+ ----------------------------
1510
+  (0.3ms) rollback transaction
1511
+  (0.1ms) begin transaction
1512
+ -------------------------------------------
1513
+ FormTest: test_fill_form_with_missing_param
1514
+ -------------------------------------------
1515
+  (0.1ms) rollback transaction
1516
+  (0.1ms) begin transaction
1517
+ ---------------------------------
1518
+ FormTest: test_new_form_from_path
1519
+ ---------------------------------
1520
+  (0.1ms) rollback transaction
1521
+  (0.1ms) begin transaction
1522
+ ------------------------
1523
+ FormTest: test_fill_form
1524
+ ------------------------
1525
+  (0.2ms) rollback transaction
1526
+  (0.1ms) begin transaction
1527
+ -----------------------------------------
1528
+ FormalizerConfigTest: test_invalid_config
1529
+ -----------------------------------------
1530
+  (0.1ms) rollback transaction
1531
+  (0.1ms) begin transaction
1532
+ ---------------------------------------
1533
+ FormalizerConfigTest: test_valid_config
1534
+ ---------------------------------------
1535
+  (0.1ms) rollback transaction
1536
+  (0.0ms) begin transaction
1537
+ ----------------------------------------
1538
+ FormalizerFormTest: test_add_form_errors
1539
+ ----------------------------------------
1540
+  (0.1ms) rollback transaction
1541
+  (0.1ms) begin transaction
1542
+ ---------------------------------------------
1543
+ FormFieldTest: test_form_field_invalid_params
1544
+ ---------------------------------------------
1545
+  (0.0ms) rollback transaction
1546
+  (0.1ms) begin transaction
1547
+ ----------------------------------------
1548
+ FormFieldTest: test_set_form_field_value
1549
+ ----------------------------------------
1550
+  (0.0ms) rollback transaction
1551
+  (0.1ms) begin transaction
1552
+ -------------------------------------------
1553
+ FormFieldTest: test_form_field_valid_params
1554
+ -------------------------------------------
1555
+  (0.0ms) rollback transaction
1556
+  (0.0ms) begin transaction
1557
+ -----------------------------------------
1558
+ FormalizerTest: test_fill_and_export_html
1559
+ -----------------------------------------
1560
+  (0.1ms) rollback transaction
1561
+  (0.1ms) begin transaction
1562
+ ----------------------------------------
1563
+ FormalizerTest: test_fill_and_export_pdf
1564
+ ----------------------------------------
1565
+  (0.1ms) rollback transaction
1566
+  (0.1ms) begin transaction
1567
+ -------------------------------------------
1568
+ FormalizerTest: test_formalizer_fill_fields
1569
+ -------------------------------------------
1570
+  (0.5ms) rollback transaction
1571
+  (0.1ms) begin transaction
1572
+ -------------------------
1573
+ FormalizerTest: test_tags
1574
+ -------------------------
1575
+  (0.1ms) rollback transaction
1576
+  (0.1ms) begin transaction
1577
+ --------------------------------------------
1578
+ FormalizerFormFieldTest: test_add_form_field
1579
+ --------------------------------------------
1580
+  (0.1ms) rollback transaction
1581
+  (0.1ms) begin transaction
1582
+ -------------------------------------
1583
+ FormTest: test_from_from_invalid_path
1584
+ -------------------------------------
1585
+  (0.1ms) rollback transaction
1586
+  (0.1ms) begin transaction
1587
+ --------------------------------------------------
1588
+ FormTest: test_form_from_valid_path_but_wrong_html
1589
+ --------------------------------------------------
1590
+  (0.1ms) rollback transaction
1591
+  (0.1ms) begin transaction
1592
+ -------------------------------------------
1593
+ FormTest: test_fill_form_with_missing_param
1594
+ -------------------------------------------
1595
+  (0.3ms) rollback transaction
1596
+  (0.1ms) begin transaction
1597
+ --------------------------------------------
1598
+ FormTest: test_form_from_invalid_direct_html
1599
+ --------------------------------------------
1600
+  (0.0ms) rollback transaction
1601
+  (0.1ms) begin transaction
1602
+ ----------------------------------
1603
+ FormTest: test_form_invalid_params
1604
+ ----------------------------------
1605
+  (0.0ms) rollback transaction
1606
+  (0.1ms) begin transaction
1607
+ ------------------------
1608
+ FormTest: test_fill_form
1609
+ ------------------------
1610
+  (0.0ms) rollback transaction
1611
+  (0.1ms) begin transaction
1612
+ ----------------------------
1613
+ FormTest: test_export_to_pdf
1614
+ ----------------------------
1615
+  (0.2ms) rollback transaction
1616
+  (0.1ms) begin transaction
1617
+ -----------------------------------------------------
1618
+ FormTest: test_fill_form_with_missing_required_fields
1619
+ -----------------------------------------------------
1620
+  (0.1ms) rollback transaction
1621
+  (0.1ms) begin transaction
1622
+ ---------------------------------
1623
+ FormTest: test_new_form_from_path
1624
+ ---------------------------------
1625
+  (0.1ms) rollback transaction
1626
+  (0.1ms) begin transaction
1627
+ --------------------------
1628
+ UtilsTest: test_file_found
1629
+ --------------------------
1630
+  (0.1ms) rollback transaction
1631
+  (0.1ms) begin transaction
1632
+ ------------------------------
1633
+ UtilsTest: test_file_not_found
1634
+ ------------------------------
1635
+  (0.1ms) rollback transaction
1636
+  (0.1ms) begin transaction
1637
+ -----------------------------------------
1638
+ FormalizerConfigTest: test_invalid_config
1639
+ -----------------------------------------
1640
+  (0.1ms) rollback transaction
1641
+  (0.1ms) begin transaction
1642
+ ---------------------------------------
1643
+ FormalizerConfigTest: test_valid_config
1644
+ ---------------------------------------
1645
+  (0.1ms) rollback transaction
1646
+  (0.1ms) begin transaction
1647
+ --------------------------
1648
+ UtilsTest: test_file_found
1649
+ --------------------------
1650
+  (0.0ms) rollback transaction
1651
+  (0.0ms) begin transaction
1652
+ ------------------------------
1653
+ UtilsTest: test_file_not_found
1654
+ ------------------------------
1655
+  (0.0ms) rollback transaction
1656
+  (0.0ms) begin transaction
1657
+ --------------------------------------------
1658
+ FormTest: test_form_from_invalid_direct_html
1659
+ --------------------------------------------
1660
+  (0.1ms) rollback transaction
1661
+  (0.1ms) begin transaction
1662
+ ------------------------
1663
+ FormTest: test_fill_form
1664
+ ------------------------
1665
+  (0.0ms) rollback transaction
1666
+  (0.1ms) begin transaction
1667
+ -----------------------------------------------------
1668
+ FormTest: test_fill_form_with_missing_required_fields
1669
+ -----------------------------------------------------
1670
+  (0.0ms) rollback transaction
1671
+  (0.1ms) begin transaction
1672
+ ----------------------------------
1673
+ FormTest: test_form_invalid_params
1674
+ ----------------------------------
1675
+  (0.0ms) rollback transaction
1676
+  (0.1ms) begin transaction
1677
+ --------------------------------------------------
1678
+ FormTest: test_form_from_valid_path_but_wrong_html
1679
+ --------------------------------------------------
1680
+  (0.3ms) rollback transaction
1681
+  (0.1ms) begin transaction
1682
+ ---------------------------------
1683
+ FormTest: test_new_form_from_path
1684
+ ---------------------------------
1685
+  (0.1ms) rollback transaction
1686
+  (0.1ms) begin transaction
1687
+ -------------------------------------
1688
+ FormTest: test_from_from_invalid_path
1689
+ -------------------------------------
1690
+  (0.0ms) rollback transaction
1691
+  (0.1ms) begin transaction
1692
+ -------------------------------------------
1693
+ FormTest: test_fill_form_with_missing_param
1694
+ -------------------------------------------
1695
+  (0.4ms) rollback transaction
1696
+  (0.1ms) begin transaction
1697
+ ----------------------------
1698
+ FormTest: test_export_to_pdf
1699
+ ----------------------------
1700
+  (0.3ms) rollback transaction
1701
+  (0.1ms) begin transaction
1702
+ -----------------------------------------
1703
+ FormalizerTest: test_fill_and_export_html
1704
+ -----------------------------------------
1705
+  (0.4ms) rollback transaction
1706
+  (0.1ms) begin transaction
1707
+ -------------------------
1708
+ FormalizerTest: test_tags
1709
+ -------------------------
1710
+  (0.1ms) rollback transaction
1711
+  (0.1ms) begin transaction
1712
+ ----------------------------------------
1713
+ FormalizerTest: test_fill_and_export_pdf
1714
+ ----------------------------------------
1715
+  (0.3ms) rollback transaction
1716
+  (0.1ms) begin transaction
1717
+ -------------------------------------------
1718
+ FormalizerTest: test_formalizer_fill_fields
1719
+ -------------------------------------------
1720
+  (0.1ms) rollback transaction
1721
+  (0.1ms) begin transaction
1722
+ ---------------------------------------------
1723
+ FormFieldTest: test_form_field_invalid_params
1724
+ ---------------------------------------------
1725
+  (0.5ms) rollback transaction
1726
+  (0.1ms) begin transaction
1727
+ -------------------------------------------
1728
+ FormFieldTest: test_form_field_valid_params
1729
+ -------------------------------------------
1730
+  (0.1ms) rollback transaction
1731
+  (0.1ms) begin transaction
1732
+ ----------------------------------------
1733
+ FormFieldTest: test_set_form_field_value
1734
+ ----------------------------------------
1735
+  (0.1ms) rollback transaction
1736
+  (0.1ms) begin transaction
1737
+ ----------------------------------------
1738
+ FormalizerFormTest: test_add_form_errors
1739
+ ----------------------------------------
1740
+  (0.1ms) rollback transaction
1741
+  (0.1ms) begin transaction
1742
+ --------------------------------------------
1743
+ FormalizerFormFieldTest: test_add_form_field
1744
+ --------------------------------------------
1745
+  (0.1ms) rollback transaction
1746
+  (0.2ms) begin transaction
1747
+ ----------------------------------------
1748
+ FormFieldTest: test_set_form_field_value
1749
+ ----------------------------------------
1750
+  (0.1ms) rollback transaction
1751
+  (0.1ms) begin transaction
1752
+ -------------------------------------------
1753
+ FormFieldTest: test_form_field_valid_params
1754
+ -------------------------------------------
1755
+  (0.1ms) rollback transaction
1756
+  (0.1ms) begin transaction
1757
+ ---------------------------------------------
1758
+ FormFieldTest: test_form_field_invalid_params
1759
+ ---------------------------------------------
1760
+  (0.1ms) rollback transaction
1761
+  (0.1ms) begin transaction
1762
+ --------------------------------------------
1763
+ FormalizerFormFieldTest: test_add_form_field
1764
+ --------------------------------------------
1765
+  (0.1ms) rollback transaction
1766
+  (0.3ms) begin transaction
1767
+ --------------------------
1768
+ UtilsTest: test_file_found
1769
+ --------------------------
1770
+  (0.1ms) rollback transaction
1771
+  (0.1ms) begin transaction
1772
+ ------------------------------
1773
+ UtilsTest: test_file_not_found
1774
+ ------------------------------
1775
+  (0.3ms) rollback transaction
1776
+  (0.1ms) begin transaction
1777
+ --------------------------------------------
1778
+ FormTest: test_form_from_invalid_direct_html
1779
+ --------------------------------------------
1780
+  (0.1ms) rollback transaction
1781
+  (0.1ms) begin transaction
1782
+ -----------------------------------------------------
1783
+ FormTest: test_fill_form_with_missing_required_fields
1784
+ -----------------------------------------------------
1785
+  (0.1ms) rollback transaction
1786
+  (0.1ms) begin transaction
1787
+ -------------------------------------------
1788
+ FormTest: test_fill_form_with_missing_param
1789
+ -------------------------------------------
1790
+  (0.1ms) rollback transaction
1791
+  (0.1ms) begin transaction
1792
+ ----------------------------
1793
+ FormTest: test_export_to_pdf
1794
+ ----------------------------
1795
+  (0.2ms) rollback transaction
1796
+  (0.2ms) begin transaction
1797
+ -------------------------------------
1798
+ FormTest: test_from_from_invalid_path
1799
+ -------------------------------------
1800
+  (0.1ms) rollback transaction
1801
+  (0.1ms) begin transaction
1802
+ --------------------------------------------------
1803
+ FormTest: test_form_from_valid_path_but_wrong_html
1804
+ --------------------------------------------------
1805
+  (0.1ms) rollback transaction
1806
+  (0.1ms) begin transaction
1807
+ ------------------------
1808
+ FormTest: test_fill_form
1809
+ ------------------------
1810
+  (0.1ms) rollback transaction
1811
+  (0.1ms) begin transaction
1812
+ ----------------------------------
1813
+ FormTest: test_form_invalid_params
1814
+ ----------------------------------
1815
+  (0.1ms) rollback transaction
1816
+  (0.1ms) begin transaction
1817
+ ---------------------------------
1818
+ FormTest: test_new_form_from_path
1819
+ ---------------------------------
1820
+  (0.1ms) rollback transaction
1821
+  (0.5ms) begin transaction
1822
+ ---------------------------------------
1823
+ FormalizerConfigTest: test_valid_config
1824
+ ---------------------------------------
1825
+  (0.1ms) rollback transaction
1826
+  (0.1ms) begin transaction
1827
+ -----------------------------------------
1828
+ FormalizerConfigTest: test_invalid_config
1829
+ -----------------------------------------
1830
+  (0.1ms) rollback transaction
1831
+  (0.1ms) begin transaction
1832
+ ----------------------------------------
1833
+ FormalizerFormTest: test_add_form_errors
1834
+ ----------------------------------------
1835
+  (0.1ms) rollback transaction
1836
+  (0.1ms) begin transaction
1837
+ -------------------------
1838
+ FormalizerTest: test_tags
1839
+ -------------------------
1840
+  (0.1ms) rollback transaction
1841
+  (0.2ms) begin transaction
1842
+ ----------------------------------------
1843
+ FormalizerTest: test_fill_and_export_pdf
1844
+ ----------------------------------------
1845
+  (0.3ms) rollback transaction
1846
+  (0.2ms) begin transaction
1847
+ -------------------------------------------
1848
+ FormalizerTest: test_formalizer_fill_fields
1849
+ -------------------------------------------
1850
+  (0.1ms) rollback transaction
1851
+  (0.1ms) begin transaction
1852
+ -----------------------------------------
1853
+ FormalizerTest: test_fill_and_export_html
1854
+ -----------------------------------------
1855
+  (1.0ms) rollback transaction
1856
+  (0.1ms) begin transaction
1857
+ ---------------------------------------------
1858
+ FormFieldTest: test_form_field_invalid_params
1859
+ ---------------------------------------------
1860
+  (0.5ms) rollback transaction
1861
+  (0.1ms) begin transaction
1862
+ -------------------------------------------
1863
+ FormFieldTest: test_form_field_valid_params
1864
+ -------------------------------------------
1865
+  (0.0ms) rollback transaction
1866
+  (0.0ms) begin transaction
1867
+ ----------------------------------------
1868
+ FormFieldTest: test_set_form_field_value
1869
+ ----------------------------------------
1870
+  (0.0ms) rollback transaction
1871
+  (0.1ms) begin transaction
1872
+ -----------------------------------------
1873
+ FormalizerConfigTest: test_invalid_config
1874
+ -----------------------------------------
1875
+  (0.1ms) rollback transaction
1876
+  (0.1ms) begin transaction
1877
+ ---------------------------------------
1878
+ FormalizerConfigTest: test_valid_config
1879
+ ---------------------------------------
1880
+  (0.1ms) rollback transaction
1881
+  (0.1ms) begin transaction
1882
+ --------------------------
1883
+ UtilsTest: test_file_found
1884
+ --------------------------
1885
+  (0.1ms) rollback transaction
1886
+  (0.1ms) begin transaction
1887
+ ------------------------------
1888
+ UtilsTest: test_file_not_found
1889
+ ------------------------------
1890
+  (0.0ms) rollback transaction
1891
+  (0.0ms) begin transaction
1892
+ ---------------------------------
1893
+ FormTest: test_new_form_from_path
1894
+ ---------------------------------
1895
+  (0.1ms) rollback transaction
1896
+  (0.4ms) begin transaction
1897
+ ------------------------
1898
+ FormTest: test_fill_form
1899
+ ------------------------
1900
+  (0.1ms) rollback transaction
1901
+  (0.0ms) begin transaction
1902
+ -------------------------------------------
1903
+ FormTest: test_fill_form_with_missing_param
1904
+ -------------------------------------------
1905
+  (0.1ms) rollback transaction
1906
+  (0.1ms) begin transaction
1907
+ -----------------------------------------------------
1908
+ FormTest: test_fill_form_with_missing_required_fields
1909
+ -----------------------------------------------------
1910
+  (0.1ms) rollback transaction
1911
+  (0.0ms) begin transaction
1912
+ ----------------------------------
1913
+ FormTest: test_form_invalid_params
1914
+ ----------------------------------
1915
+  (0.0ms) rollback transaction
1916
+  (0.2ms) begin transaction
1917
+ --------------------------------------------------
1918
+ FormTest: test_form_from_valid_path_but_wrong_html
1919
+ --------------------------------------------------
1920
+  (0.1ms) rollback transaction
1921
+  (0.1ms) begin transaction
1922
+ -------------------------------------
1923
+ FormTest: test_from_from_invalid_path
1924
+ -------------------------------------
1925
+  (0.1ms) rollback transaction
1926
+  (0.1ms) begin transaction
1927
+ ----------------------------
1928
+ FormTest: test_export_to_pdf
1929
+ ----------------------------
1930
+  (1.0ms) rollback transaction
1931
+  (0.2ms) begin transaction
1932
+ --------------------------------------------
1933
+ FormTest: test_form_from_invalid_direct_html
1934
+ --------------------------------------------
1935
+  (0.1ms) rollback transaction
1936
+  (0.1ms) begin transaction
1937
+ ----------------------------------------
1938
+ FormalizerFormTest: test_add_form_errors
1939
+ ----------------------------------------
1940
+  (0.1ms) rollback transaction
1941
+  (0.1ms) begin transaction
1942
+ --------------------------------------------
1943
+ FormalizerFormFieldTest: test_add_form_field
1944
+ --------------------------------------------
1945
+  (0.1ms) rollback transaction
1946
+  (0.1ms) begin transaction
1947
+ -------------------------
1948
+ FormalizerTest: test_tags
1949
+ -------------------------
1950
+  (0.1ms) rollback transaction
1951
+  (0.1ms) begin transaction
1952
+ ----------------------------------------
1953
+ FormalizerTest: test_fill_and_export_pdf
1954
+ ----------------------------------------
1955
+  (0.2ms) rollback transaction
1956
+  (0.1ms) begin transaction
1957
+ -----------------------------------------
1958
+ FormalizerTest: test_fill_and_export_html
1959
+ -----------------------------------------
1960
+  (0.1ms) rollback transaction
1961
+  (0.1ms) begin transaction
1962
+ -------------------------------------------
1963
+ FormalizerTest: test_formalizer_fill_fields
1964
+ -------------------------------------------
1965
+  (0.1ms) rollback transaction
1966
+  (0.1ms) begin transaction
1967
+ ---------------------------------
1968
+ FormTest: test_new_form_from_path
1969
+ ---------------------------------
1970
+  (0.1ms) rollback transaction
1971
+  (0.1ms) begin transaction
1972
+ -------------------------------------
1973
+ FormTest: test_from_from_invalid_path
1974
+ -------------------------------------
1975
+  (0.1ms) rollback transaction
1976
+  (0.1ms) begin transaction
1977
+ --------------------------------------------------
1978
+ FormTest: test_form_from_valid_path_but_wrong_html
1979
+ --------------------------------------------------
1980
+  (0.1ms) rollback transaction
1981
+  (0.1ms) begin transaction
1982
+ -------------------------------------------
1983
+ FormTest: test_fill_form_with_missing_param
1984
+ -------------------------------------------
1985
+  (0.0ms) rollback transaction
1986
+  (0.1ms) begin transaction
1987
+ -----------------------------------------------------
1988
+ FormTest: test_fill_form_with_missing_required_fields
1989
+ -----------------------------------------------------
1990
+  (0.0ms) rollback transaction
1991
+  (0.1ms) begin transaction
1992
+ ----------------------------------
1993
+ FormTest: test_form_invalid_params
1994
+ ----------------------------------
1995
+  (0.1ms) rollback transaction
1996
+  (0.1ms) begin transaction
1997
+ ------------------------
1998
+ FormTest: test_fill_form
1999
+ ------------------------
2000
+  (0.1ms) rollback transaction
2001
+  (0.1ms) begin transaction
2002
+ ----------------------------
2003
+ FormTest: test_export_to_pdf
2004
+ ----------------------------
2005
+  (0.2ms) rollback transaction
2006
+  (0.1ms) begin transaction
2007
+ --------------------------------------------
2008
+ FormTest: test_form_from_invalid_direct_html
2009
+ --------------------------------------------
2010
+  (0.1ms) rollback transaction
2011
+  (0.1ms) begin transaction
2012
+ ----------------------------------------
2013
+ FormFieldTest: test_set_form_field_value
2014
+ ----------------------------------------
2015
+  (0.1ms) rollback transaction
2016
+  (0.1ms) begin transaction
2017
+ -------------------------------------------
2018
+ FormFieldTest: test_form_field_valid_params
2019
+ -------------------------------------------
2020
+  (0.0ms) rollback transaction
2021
+  (0.1ms) begin transaction
2022
+ ---------------------------------------------
2023
+ FormFieldTest: test_form_field_invalid_params
2024
+ ---------------------------------------------
2025
+  (0.1ms) rollback transaction
2026
+  (0.1ms) begin transaction
2027
+ -----------------------------------------
2028
+ FormalizerConfigTest: test_invalid_config
2029
+ -----------------------------------------
2030
+  (0.1ms) rollback transaction
2031
+  (0.1ms) begin transaction
2032
+ ---------------------------------------
2033
+ FormalizerConfigTest: test_valid_config
2034
+ ---------------------------------------
2035
+  (0.1ms) rollback transaction
2036
+  (0.1ms) begin transaction
2037
+ ------------------------------
2038
+ UtilsTest: test_file_not_found
2039
+ ------------------------------
2040
+  (0.1ms) rollback transaction
2041
+  (0.1ms) begin transaction
2042
+ --------------------------
2043
+ UtilsTest: test_file_found
2044
+ --------------------------
2045
+  (0.0ms) rollback transaction
2046
+  (0.1ms) begin transaction
2047
+ --------------------------------------------
2048
+ FormalizerFormFieldTest: test_add_form_field
2049
+ --------------------------------------------
2050
+  (0.1ms) rollback transaction
2051
+  (0.1ms) begin transaction
2052
+ ----------------------------------------
2053
+ FormalizerFormTest: test_add_form_errors
2054
+ ----------------------------------------
2055
+  (0.1ms) rollback transaction
2056
+  (0.1ms) begin transaction
2057
+ -----------------------------------------
2058
+ FormalizerTest: test_fill_and_export_html
2059
+ -----------------------------------------
2060
+  (0.1ms) rollback transaction
2061
+  (0.1ms) begin transaction
2062
+ -------------------------------------------
2063
+ FormalizerTest: test_formalizer_fill_fields
2064
+ -------------------------------------------
2065
+  (0.1ms) rollback transaction
2066
+  (0.1ms) begin transaction
2067
+ -------------------------
2068
+ FormalizerTest: test_tags
2069
+ -------------------------
2070
+  (0.1ms) rollback transaction
2071
+  (0.1ms) begin transaction
2072
+ ----------------------------------------
2073
+ FormalizerTest: test_fill_and_export_pdf
2074
+ ----------------------------------------
2075
+  (0.1ms) rollback transaction
2076
+  (0.2ms) begin transaction
2077
+ ------------------------------
2078
+ UtilsTest: test_file_not_found
2079
+ ------------------------------
2080
+  (0.5ms) rollback transaction
2081
+  (0.4ms) begin transaction
2082
+ --------------------------
2083
+ UtilsTest: test_file_found
2084
+ --------------------------
2085
+  (0.1ms) rollback transaction
2086
+  (0.1ms) begin transaction
2087
+ -------------------------------------------
2088
+ FormalizerTest: test_formalizer_fill_fields
2089
+ -------------------------------------------
2090
+  (0.1ms) rollback transaction
2091
+  (0.1ms) begin transaction
2092
+ -------------------------
2093
+ FormalizerTest: test_tags
2094
+ -------------------------
2095
+  (0.1ms) rollback transaction
2096
+  (0.1ms) begin transaction
2097
+ ----------------------------------------
2098
+ FormalizerTest: test_fill_and_export_pdf
2099
+ ----------------------------------------
2100
+  (0.3ms) rollback transaction
2101
+  (0.2ms) begin transaction
2102
+ -----------------------------------------
2103
+ FormalizerTest: test_fill_and_export_html
2104
+ -----------------------------------------
2105
+  (0.2ms) rollback transaction
2106
+  (0.1ms) begin transaction
2107
+ -------------------------------------------
2108
+ FormFieldTest: test_form_field_valid_params
2109
+ -------------------------------------------
2110
+  (0.1ms) rollback transaction
2111
+  (0.1ms) begin transaction
2112
+ ----------------------------------------
2113
+ FormFieldTest: test_set_form_field_value
2114
+ ----------------------------------------
2115
+  (0.5ms) rollback transaction
2116
+  (0.0ms) begin transaction
2117
+ ---------------------------------------------
2118
+ FormFieldTest: test_form_field_invalid_params
2119
+ ---------------------------------------------
2120
+  (0.1ms) rollback transaction
2121
+  (0.1ms) begin transaction
2122
+ -----------------------------------------
2123
+ FormalizerConfigTest: test_invalid_config
2124
+ -----------------------------------------
2125
+  (0.1ms) rollback transaction
2126
+  (0.1ms) begin transaction
2127
+ ---------------------------------------
2128
+ FormalizerConfigTest: test_valid_config
2129
+ ---------------------------------------
2130
+  (0.1ms) rollback transaction
2131
+  (0.2ms) begin transaction
2132
+ --------------------------------------------
2133
+ FormalizerFormFieldTest: test_add_form_field
2134
+ --------------------------------------------
2135
+  (0.1ms) rollback transaction
2136
+  (0.1ms) begin transaction
2137
+ ----------------------------
2138
+ FormTest: test_export_to_pdf
2139
+ ----------------------------
2140
+  (0.2ms) rollback transaction
2141
+  (0.1ms) begin transaction
2142
+ ----------------------------------
2143
+ FormTest: test_form_invalid_params
2144
+ ----------------------------------
2145
+  (0.1ms) rollback transaction
2146
+  (0.1ms) begin transaction
2147
+ -------------------------------------------
2148
+ FormTest: test_fill_form_with_missing_param
2149
+ -------------------------------------------
2150
+  (0.1ms) rollback transaction
2151
+  (0.1ms) begin transaction
2152
+ --------------------------------------------------
2153
+ FormTest: test_form_from_valid_path_but_wrong_html
2154
+ --------------------------------------------------
2155
+  (0.1ms) rollback transaction
2156
+  (0.1ms) begin transaction
2157
+ ---------------------------------
2158
+ FormTest: test_new_form_from_path
2159
+ ---------------------------------
2160
+  (0.1ms) rollback transaction
2161
+  (0.1ms) begin transaction
2162
+ -------------------------------------
2163
+ FormTest: test_from_from_invalid_path
2164
+ -------------------------------------
2165
+  (0.1ms) rollback transaction
2166
+  (0.1ms) begin transaction
2167
+ ------------------------
2168
+ FormTest: test_fill_form
2169
+ ------------------------
2170
+  (0.1ms) rollback transaction
2171
+  (0.1ms) begin transaction
2172
+ -----------------------------------------------------
2173
+ FormTest: test_fill_form_with_missing_required_fields
2174
+ -----------------------------------------------------
2175
+  (0.1ms) rollback transaction
2176
+  (0.1ms) begin transaction
2177
+ --------------------------------------------
2178
+ FormTest: test_form_from_invalid_direct_html
2179
+ --------------------------------------------
2180
+  (0.1ms) rollback transaction
2181
+  (0.1ms) begin transaction
2182
+ ----------------------------------------
2183
+ FormalizerFormTest: test_add_form_errors
2184
+ ----------------------------------------
2185
+  (0.1ms) rollback transaction
2186
+  (0.2ms) begin transaction
2187
+ -------------------------------------------
2188
+ FormalizerTest: test_formalizer_fill_fields
2189
+ -------------------------------------------
2190
+  (0.1ms) rollback transaction
2191
+  (0.1ms) begin transaction
2192
+ ----------------------------------------
2193
+ FormalizerTest: test_fill_and_export_pdf
2194
+ ----------------------------------------
2195
+  (0.3ms) rollback transaction
2196
+  (0.1ms) begin transaction
2197
+ -----------------------------------------
2198
+ FormalizerTest: test_fill_and_export_html
2199
+ -----------------------------------------
2200
+  (0.1ms) rollback transaction
2201
+  (0.1ms) begin transaction
2202
+ -------------------------
2203
+ FormalizerTest: test_tags
2204
+ -------------------------
2205
+  (0.1ms) rollback transaction
2206
+  (0.1ms) begin transaction
2207
+ ------------------------------
2208
+ UtilsTest: test_file_not_found
2209
+ ------------------------------
2210
+  (0.0ms) rollback transaction
2211
+  (0.1ms) begin transaction
2212
+ --------------------------
2213
+ UtilsTest: test_file_found
2214
+ --------------------------
2215
+  (0.1ms) rollback transaction
2216
+  (0.1ms) begin transaction
2217
+ ----------------------------------------
2218
+ FormalizerFormTest: test_add_form_errors
2219
+ ----------------------------------------
2220
+  (0.1ms) rollback transaction
2221
+  (0.1ms) begin transaction
2222
+ --------------------------------------------
2223
+ FormalizerFormFieldTest: test_add_form_field
2224
+ --------------------------------------------
2225
+  (0.1ms) rollback transaction
2226
+  (0.1ms) begin transaction
2227
+ -----------------------------------------
2228
+ FormalizerConfigTest: test_invalid_config
2229
+ -----------------------------------------
2230
+  (0.1ms) rollback transaction
2231
+  (0.1ms) begin transaction
2232
+ ---------------------------------------
2233
+ FormalizerConfigTest: test_valid_config
2234
+ ---------------------------------------
2235
+  (0.1ms) rollback transaction
2236
+  (0.1ms) begin transaction
2237
+ ---------------------------------------------
2238
+ FormFieldTest: test_form_field_invalid_params
2239
+ ---------------------------------------------
2240
+  (0.1ms) rollback transaction
2241
+  (0.0ms) begin transaction
2242
+ ----------------------------------------
2243
+ FormFieldTest: test_set_form_field_value
2244
+ ----------------------------------------
2245
+  (0.0ms) rollback transaction
2246
+  (0.1ms) begin transaction
2247
+ -------------------------------------------
2248
+ FormFieldTest: test_form_field_valid_params
2249
+ -------------------------------------------
2250
+  (0.1ms) rollback transaction
2251
+  (0.0ms) begin transaction
2252
+ -----------------------------------------------------
2253
+ FormTest: test_fill_form_with_missing_required_fields
2254
+ -----------------------------------------------------
2255
+  (0.1ms) rollback transaction
2256
+  (0.1ms) begin transaction
2257
+ -------------------------------------
2258
+ FormTest: test_from_from_invalid_path
2259
+ -------------------------------------
2260
+  (0.1ms) rollback transaction
2261
+  (0.1ms) begin transaction
2262
+ ---------------------------------
2263
+ FormTest: test_new_form_from_path
2264
+ ---------------------------------
2265
+  (0.2ms) rollback transaction
2266
+  (0.1ms) begin transaction
2267
+ --------------------------------------------
2268
+ FormTest: test_form_from_invalid_direct_html
2269
+ --------------------------------------------
2270
+  (0.1ms) rollback transaction
2271
+  (0.0ms) begin transaction
2272
+ ----------------------------------
2273
+ FormTest: test_form_invalid_params
2274
+ ----------------------------------
2275
+  (0.0ms) rollback transaction
2276
+  (0.0ms) begin transaction
2277
+ --------------------------------------------------
2278
+ FormTest: test_form_from_valid_path_but_wrong_html
2279
+ --------------------------------------------------
2280
+  (0.1ms) rollback transaction
2281
+  (0.1ms) begin transaction
2282
+ -------------------------------------------
2283
+ FormTest: test_fill_form_with_missing_param
2284
+ -------------------------------------------
2285
+  (0.1ms) rollback transaction
2286
+  (0.1ms) begin transaction
2287
+ ------------------------
2288
+ FormTest: test_fill_form
2289
+ ------------------------
2290
+  (0.0ms) rollback transaction
2291
+  (0.1ms) begin transaction
2292
+ ----------------------------
2293
+ FormTest: test_export_to_pdf
2294
+ ----------------------------
2295
+  (0.2ms) rollback transaction
2296
+  (0.1ms) begin transaction
2297
+ ----------------------------------------
2298
+ FormalizerFormTest: test_add_form_errors
2299
+ ----------------------------------------
2300
+  (0.6ms) rollback transaction
2301
+  (0.1ms) begin transaction
2302
+ -------------------------------------------
2303
+ FormalizerTest: test_formalizer_fill_fields
2304
+ -------------------------------------------
2305
+  (0.1ms) rollback transaction
2306
+  (0.1ms) begin transaction
2307
+ -----------------------------------------
2308
+ FormalizerTest: test_fill_and_export_html
2309
+ -----------------------------------------
2310
+  (0.1ms) rollback transaction
2311
+  (0.1ms) begin transaction
2312
+ ----------------------------------------
2313
+ FormalizerTest: test_fill_and_export_pdf
2314
+ ----------------------------------------
2315
+  (0.1ms) rollback transaction
2316
+  (0.1ms) begin transaction
2317
+ -------------------------
2318
+ FormalizerTest: test_tags
2319
+ -------------------------
2320
+  (0.1ms) rollback transaction
2321
+  (0.1ms) begin transaction
2322
+ ---------------------------------------------
2323
+ FormFieldTest: test_form_field_invalid_params
2324
+ ---------------------------------------------
2325
+  (0.0ms) rollback transaction
2326
+  (0.4ms) begin transaction
2327
+ -------------------------------------------
2328
+ FormFieldTest: test_form_field_valid_params
2329
+ -------------------------------------------
2330
+  (0.0ms) rollback transaction
2331
+  (0.0ms) begin transaction
2332
+ ----------------------------------------
2333
+ FormFieldTest: test_set_form_field_value
2334
+ ----------------------------------------
2335
+  (0.0ms) rollback transaction
2336
+  (0.1ms) begin transaction
2337
+ ---------------------------------------
2338
+ FormalizerConfigTest: test_valid_config
2339
+ ---------------------------------------
2340
+  (0.1ms) rollback transaction
2341
+  (0.1ms) begin transaction
2342
+ -----------------------------------------
2343
+ FormalizerConfigTest: test_invalid_config
2344
+ -----------------------------------------
2345
+  (0.1ms) rollback transaction
2346
+  (0.1ms) begin transaction
2347
+ --------------------------------------------------
2348
+ FormTest: test_form_from_valid_path_but_wrong_html
2349
+ --------------------------------------------------
2350
+  (0.1ms) rollback transaction
2351
+  (0.1ms) begin transaction
2352
+ ------------------------
2353
+ FormTest: test_fill_form
2354
+ ------------------------
2355
+  (0.1ms) rollback transaction
2356
+  (0.1ms) begin transaction
2357
+ -----------------------------------------------------
2358
+ FormTest: test_fill_form_with_missing_required_fields
2359
+ -----------------------------------------------------
2360
+  (0.6ms) rollback transaction
2361
+  (0.1ms) begin transaction
2362
+ ---------------------------------
2363
+ FormTest: test_new_form_from_path
2364
+ ---------------------------------
2365
+  (0.0ms) rollback transaction
2366
+  (0.1ms) begin transaction
2367
+ ----------------------------------
2368
+ FormTest: test_form_invalid_params
2369
+ ----------------------------------
2370
+  (0.0ms) rollback transaction
2371
+  (0.1ms) begin transaction
2372
+ -------------------------------------------
2373
+ FormTest: test_fill_form_with_missing_param
2374
+ -------------------------------------------
2375
+  (0.3ms) rollback transaction
2376
+  (0.1ms) begin transaction
2377
+ -------------------------------------
2378
+ FormTest: test_from_from_invalid_path
2379
+ -------------------------------------
2380
+  (0.0ms) rollback transaction
2381
+  (0.1ms) begin transaction
2382
+ --------------------------------------------
2383
+ FormTest: test_form_from_invalid_direct_html
2384
+ --------------------------------------------
2385
+  (0.0ms) rollback transaction
2386
+  (0.1ms) begin transaction
2387
+ ----------------------------
2388
+ FormTest: test_export_to_pdf
2389
+ ----------------------------
2390
+  (0.2ms) rollback transaction
2391
+  (0.1ms) begin transaction
2392
+ ------------------------------
2393
+ UtilsTest: test_file_not_found
2394
+ ------------------------------
2395
+  (0.1ms) rollback transaction
2396
+  (0.1ms) begin transaction
2397
+ --------------------------
2398
+ UtilsTest: test_file_found
2399
+ --------------------------
2400
+  (0.1ms) rollback transaction
2401
+  (0.1ms) begin transaction
2402
+ --------------------------------------------
2403
+ FormalizerFormFieldTest: test_add_form_field
2404
+ --------------------------------------------
2405
+  (0.1ms) rollback transaction
2406
+  (0.1ms) begin transaction
2407
+ ----------------------------------------
2408
+ FormalizerFormTest: test_add_form_errors
2409
+ ----------------------------------------
2410
+  (0.1ms) rollback transaction
2411
+  (0.1ms) begin transaction
2412
+ ----------------------------------------
2413
+ FormFieldTest: test_set_form_field_value
2414
+ ----------------------------------------
2415
+  (0.0ms) rollback transaction
2416
+  (0.1ms) begin transaction
2417
+ -------------------------------------------
2418
+ FormFieldTest: test_form_field_valid_params
2419
+ -------------------------------------------
2420
+  (0.1ms) rollback transaction
2421
+  (0.1ms) begin transaction
2422
+ ---------------------------------------------
2423
+ FormFieldTest: test_form_field_invalid_params
2424
+ ---------------------------------------------
2425
+  (0.0ms) rollback transaction
2426
+  (0.1ms) begin transaction
2427
+ -------------------------
2428
+ FormalizerTest: test_tags
2429
+ -------------------------
2430
+  (0.1ms) rollback transaction
2431
+  (0.1ms) begin transaction
2432
+ -------------------------------------------
2433
+ FormalizerTest: test_formalizer_fill_fields
2434
+ -------------------------------------------
2435
+  (0.1ms) rollback transaction
2436
+  (0.2ms) begin transaction
2437
+ -----------------------------------------
2438
+ FormalizerTest: test_fill_and_export_html
2439
+ -----------------------------------------
2440
+  (0.1ms) rollback transaction
2441
+  (0.1ms) begin transaction
2442
+ ----------------------------------------
2443
+ FormalizerTest: test_fill_and_export_pdf
2444
+ ----------------------------------------
2445
+  (0.1ms) rollback transaction
2446
+  (0.1ms) begin transaction
2447
+ ----------------------------
2448
+ FormTest: test_export_to_pdf
2449
+ ----------------------------
2450
+  (0.2ms) rollback transaction
2451
+  (1.5ms) begin transaction
2452
+ --------------------------------------------
2453
+ FormTest: test_form_from_invalid_direct_html
2454
+ --------------------------------------------
2455
+  (0.1ms) rollback transaction
2456
+  (0.1ms) begin transaction
2457
+ -------------------------------------------
2458
+ FormTest: test_fill_form_with_missing_param
2459
+ -------------------------------------------
2460
+  (0.1ms) rollback transaction
2461
+  (0.1ms) begin transaction
2462
+ ----------------------------------
2463
+ FormTest: test_form_invalid_params
2464
+ ----------------------------------
2465
+  (0.1ms) rollback transaction
2466
+  (0.1ms) begin transaction
2467
+ -------------------------------------
2468
+ FormTest: test_from_from_invalid_path
2469
+ -------------------------------------
2470
+  (0.1ms) rollback transaction
2471
+  (0.1ms) begin transaction
2472
+ ------------------------
2473
+ FormTest: test_fill_form
2474
+ ------------------------
2475
+  (0.1ms) rollback transaction
2476
+  (0.1ms) begin transaction
2477
+ --------------------------------------------------
2478
+ FormTest: test_form_from_valid_path_but_wrong_html
2479
+ --------------------------------------------------
2480
+  (0.1ms) rollback transaction
2481
+  (0.1ms) begin transaction
2482
+ -----------------------------------------------------
2483
+ FormTest: test_fill_form_with_missing_required_fields
2484
+ -----------------------------------------------------
2485
+  (0.1ms) rollback transaction
2486
+  (0.2ms) begin transaction
2487
+ ---------------------------------
2488
+ FormTest: test_new_form_from_path
2489
+ ---------------------------------
2490
+  (0.1ms) rollback transaction
2491
+  (0.1ms) begin transaction
2492
+ --------------------------------------------
2493
+ FormalizerFormFieldTest: test_add_form_field
2494
+ --------------------------------------------
2495
+  (0.1ms) rollback transaction
2496
+  (0.1ms) begin transaction
2497
+ --------------------------
2498
+ UtilsTest: test_file_found
2499
+ --------------------------
2500
+  (0.1ms) rollback transaction
2501
+  (0.1ms) begin transaction
2502
+ ------------------------------
2503
+ UtilsTest: test_file_not_found
2504
+ ------------------------------
2505
+  (0.1ms) rollback transaction
2506
+  (0.1ms) begin transaction
2507
+ -----------------------------------------
2508
+ FormalizerConfigTest: test_invalid_config
2509
+ -----------------------------------------
2510
+  (0.1ms) rollback transaction
2511
+  (0.8ms) begin transaction
2512
+ ---------------------------------------
2513
+ FormalizerConfigTest: test_valid_config
2514
+ ---------------------------------------
2515
+  (0.1ms) rollback transaction
2516
+  (0.1ms) begin transaction
2517
+ ----------------------------------------
2518
+ FormalizerFormTest: test_add_form_errors
2519
+ ----------------------------------------
2520
+  (0.1ms) rollback transaction
2521
+  (0.1ms) begin transaction
2522
+ -------------------------------------------
2523
+ FormTest: test_fill_form_with_missing_param
2524
+ -------------------------------------------
2525
+  (0.0ms) rollback transaction
2526
+  (0.1ms) begin transaction
2527
+ ------------------------
2528
+ FormTest: test_fill_form
2529
+ ------------------------
2530
+  (0.1ms) rollback transaction
2531
+  (0.1ms) begin transaction
2532
+ ----------------------------
2533
+ FormTest: test_export_to_pdf
2534
+ ----------------------------
2535
+  (0.1ms) rollback transaction
2536
+  (0.1ms) begin transaction
2537
+ -----------------------------------------------------
2538
+ FormTest: test_fill_form_with_missing_required_fields
2539
+ -----------------------------------------------------
2540
+  (0.1ms) rollback transaction
2541
+  (0.1ms) begin transaction
2542
+ --------------------------------------------
2543
+ FormTest: test_form_from_invalid_direct_html
2544
+ --------------------------------------------
2545
+  (0.1ms) rollback transaction
2546
+  (0.1ms) begin transaction
2547
+ -------------------------------------
2548
+ FormTest: test_from_from_invalid_path
2549
+ -------------------------------------
2550
+  (0.1ms) rollback transaction
2551
+  (0.1ms) begin transaction
2552
+ ----------------------------------
2553
+ FormTest: test_form_invalid_params
2554
+ ----------------------------------
2555
+  (0.1ms) rollback transaction
2556
+  (0.1ms) begin transaction
2557
+ --------------------------------------------------
2558
+ FormTest: test_form_from_valid_path_but_wrong_html
2559
+ --------------------------------------------------
2560
+  (0.4ms) rollback transaction
2561
+  (0.1ms) begin transaction
2562
+ ---------------------------------
2563
+ FormTest: test_new_form_from_path
2564
+ ---------------------------------
2565
+  (0.1ms) rollback transaction
2566
+  (0.1ms) begin transaction
2567
+ ----------------------------------------
2568
+ FormalizerTest: test_fill_and_export_pdf
2569
+ ----------------------------------------
2570
+  (0.1ms) rollback transaction
2571
+  (0.1ms) begin transaction
2572
+ -------------------------------------------
2573
+ FormalizerTest: test_formalizer_fill_fields
2574
+ -------------------------------------------
2575
+  (0.1ms) rollback transaction
2576
+  (0.1ms) begin transaction
2577
+ -------------------------
2578
+ FormalizerTest: test_tags
2579
+ -------------------------
2580
+  (0.1ms) rollback transaction
2581
+  (0.1ms) begin transaction
2582
+ -----------------------------------------
2583
+ FormalizerTest: test_fill_and_export_html
2584
+ -----------------------------------------
2585
+  (0.1ms) rollback transaction
2586
+  (0.0ms) begin transaction
2587
+ --------------------------------------------
2588
+ FormalizerFormFieldTest: test_add_form_field
2589
+ --------------------------------------------
2590
+  (0.1ms) rollback transaction
2591
+  (0.8ms) begin transaction
2592
+ ---------------------------------------
2593
+ FormalizerConfigTest: test_valid_config
2594
+ ---------------------------------------
2595
+  (0.1ms) rollback transaction
2596
+  (0.1ms) begin transaction
2597
+ -----------------------------------------
2598
+ FormalizerConfigTest: test_invalid_config
2599
+ -----------------------------------------
2600
+  (0.2ms) rollback transaction
2601
+  (0.1ms) begin transaction
2602
+ --------------------------
2603
+ UtilsTest: test_file_found
2604
+ --------------------------
2605
+  (0.1ms) rollback transaction
2606
+  (0.1ms) begin transaction
2607
+ ------------------------------
2608
+ UtilsTest: test_file_not_found
2609
+ ------------------------------
2610
+  (0.1ms) rollback transaction
2611
+  (0.1ms) begin transaction
2612
+ ---------------------------------------------
2613
+ FormFieldTest: test_form_field_invalid_params
2614
+ ---------------------------------------------
2615
+  (0.1ms) rollback transaction
2616
+  (0.1ms) begin transaction
2617
+ -------------------------------------------
2618
+ FormFieldTest: test_form_field_valid_params
2619
+ -------------------------------------------
2620
+  (0.1ms) rollback transaction
2621
+  (0.1ms) begin transaction
2622
+ ----------------------------------------
2623
+ FormFieldTest: test_set_form_field_value
2624
+ ----------------------------------------
2625
+  (0.1ms) rollback transaction
2626
+  (0.1ms) begin transaction
2627
+ --------------------------------------------------
2628
+ FormTest: test_form_from_valid_path_but_wrong_html
2629
+ --------------------------------------------------
2630
+  (0.1ms) rollback transaction
2631
+  (0.1ms) begin transaction
2632
+ -------------------------------------
2633
+ FormTest: test_from_from_invalid_path
2634
+ -------------------------------------
2635
+  (0.0ms) rollback transaction
2636
+  (0.1ms) begin transaction
2637
+ ----------------------------
2638
+ FormTest: test_export_to_pdf
2639
+ ----------------------------
2640
+  (0.1ms) rollback transaction
2641
+  (0.1ms) begin transaction
2642
+ -------------------------------------------
2643
+ FormTest: test_fill_form_with_missing_param
2644
+ -------------------------------------------
2645
+  (0.1ms) rollback transaction
2646
+  (0.1ms) begin transaction
2647
+ -----------------------------------------------------
2648
+ FormTest: test_fill_form_with_missing_required_fields
2649
+ -----------------------------------------------------
2650
+  (0.1ms) rollback transaction
2651
+  (0.1ms) begin transaction
2652
+ ----------------------------------
2653
+ FormTest: test_form_invalid_params
2654
+ ----------------------------------
2655
+  (0.1ms) rollback transaction
2656
+  (0.1ms) begin transaction
2657
+ ---------------------------------
2658
+ FormTest: test_new_form_from_path
2659
+ ---------------------------------
2660
+  (0.1ms) rollback transaction
2661
+  (0.1ms) begin transaction
2662
+ ------------------------
2663
+ FormTest: test_fill_form
2664
+ ------------------------
2665
+  (0.1ms) rollback transaction
2666
+  (0.1ms) begin transaction
2667
+ --------------------------------------------
2668
+ FormTest: test_form_from_invalid_direct_html
2669
+ --------------------------------------------
2670
+  (0.1ms) rollback transaction
2671
+  (0.1ms) begin transaction
2672
+ --------------------------------------------
2673
+ FormalizerFormFieldTest: test_add_form_field
2674
+ --------------------------------------------
2675
+  (0.1ms) rollback transaction
2676
+  (0.1ms) begin transaction
2677
+ --------------------------
2678
+ UtilsTest: test_file_found
2679
+ --------------------------
2680
+  (0.0ms) rollback transaction
2681
+  (0.4ms) begin transaction
2682
+ ------------------------------
2683
+ UtilsTest: test_file_not_found
2684
+ ------------------------------
2685
+  (0.1ms) rollback transaction
2686
+  (0.1ms) begin transaction
2687
+ -----------------------------------------
2688
+ FormalizerConfigTest: test_invalid_config
2689
+ -----------------------------------------
2690
+  (0.1ms) rollback transaction
2691
+  (0.6ms) begin transaction
2692
+ ---------------------------------------
2693
+ FormalizerConfigTest: test_valid_config
2694
+ ---------------------------------------
2695
+  (0.1ms) rollback transaction
2696
+  (0.1ms) begin transaction
2697
+ ---------------------------------------------
2698
+ FormFieldTest: test_form_field_invalid_params
2699
+ ---------------------------------------------
2700
+  (0.0ms) rollback transaction
2701
+  (0.1ms) begin transaction
2702
+ -------------------------------------------
2703
+ FormFieldTest: test_form_field_valid_params
2704
+ -------------------------------------------
2705
+  (0.0ms) rollback transaction
2706
+  (0.1ms) begin transaction
2707
+ ----------------------------------------
2708
+ FormFieldTest: test_set_form_field_value
2709
+ ----------------------------------------
2710
+  (0.0ms) rollback transaction
2711
+  (0.0ms) begin transaction
2712
+ ----------------------------------------
2713
+ FormalizerFormTest: test_add_form_errors
2714
+ ----------------------------------------
2715
+  (0.1ms) rollback transaction
2716
+  (0.1ms) begin transaction
2717
+ -----------------------------------------
2718
+ FormalizerTest: test_fill_and_export_html
2719
+ -----------------------------------------
2720
+  (0.6ms) rollback transaction
2721
+  (0.1ms) begin transaction
2722
+ ----------------------------------------
2723
+ FormalizerTest: test_fill_and_export_pdf
2724
+ ----------------------------------------
2725
+  (0.1ms) rollback transaction
2726
+  (0.1ms) begin transaction
2727
+ -------------------------
2728
+ FormalizerTest: test_tags
2729
+ -------------------------
2730
+  (0.1ms) rollback transaction
2731
+  (0.1ms) begin transaction
2732
+ -------------------------------------------
2733
+ FormalizerTest: test_formalizer_fill_fields
2734
+ -------------------------------------------
2735
+  (0.1ms) rollback transaction
2736
+  (0.1ms) begin transaction
2737
+ ---------------------------------------------
2738
+ FormFieldTest: test_form_field_invalid_params
2739
+ ---------------------------------------------
2740
+  (0.1ms) rollback transaction
2741
+  (0.1ms) begin transaction
2742
+ -------------------------------------------
2743
+ FormFieldTest: test_form_field_valid_params
2744
+ -------------------------------------------
2745
+  (0.2ms) rollback transaction
2746
+  (0.1ms) begin transaction
2747
+ ----------------------------------------
2748
+ FormFieldTest: test_set_form_field_value
2749
+ ----------------------------------------
2750
+  (0.0ms) rollback transaction
2751
+  (0.0ms) begin transaction
2752
+ ----------------------------------
2753
+ FormTest: test_form_invalid_params
2754
+ ----------------------------------
2755
+  (0.0ms) rollback transaction
2756
+  (0.1ms) begin transaction
2757
+ ---------------------------------
2758
+ FormTest: test_new_form_from_path
2759
+ ---------------------------------
2760
+  (0.1ms) rollback transaction
2761
+  (0.1ms) begin transaction
2762
+ -------------------------------------
2763
+ FormTest: test_from_from_invalid_path
2764
+ -------------------------------------
2765
+  (0.0ms) rollback transaction
2766
+  (0.0ms) begin transaction
2767
+ -----------------------------------------------------
2768
+ FormTest: test_fill_form_with_missing_required_fields
2769
+ -----------------------------------------------------
2770
+  (0.1ms) rollback transaction
2771
+  (0.1ms) begin transaction
2772
+ -------------------------------------------
2773
+ FormTest: test_fill_form_with_missing_param
2774
+ -------------------------------------------
2775
+  (0.0ms) rollback transaction
2776
+  (0.1ms) begin transaction
2777
+ --------------------------------------------
2778
+ FormTest: test_form_from_invalid_direct_html
2779
+ --------------------------------------------
2780
+  (0.0ms) rollback transaction
2781
+  (0.1ms) begin transaction
2782
+ --------------------------------------------------
2783
+ FormTest: test_form_from_valid_path_but_wrong_html
2784
+ --------------------------------------------------
2785
+  (0.1ms) rollback transaction
2786
+  (0.1ms) begin transaction
2787
+ ----------------------------
2788
+ FormTest: test_export_to_pdf
2789
+ ----------------------------
2790
+  (0.3ms) rollback transaction
2791
+  (0.1ms) begin transaction
2792
+ ------------------------
2793
+ FormTest: test_fill_form
2794
+ ------------------------
2795
+  (0.1ms) rollback transaction
2796
+  (0.1ms) begin transaction
2797
+ ----------------------------------------
2798
+ FormalizerFormTest: test_add_form_errors
2799
+ ----------------------------------------
2800
+  (0.1ms) rollback transaction
2801
+  (0.1ms) begin transaction
2802
+ -----------------------------------------
2803
+ FormalizerConfigTest: test_invalid_config
2804
+ -----------------------------------------
2805
+  (0.1ms) rollback transaction
2806
+  (0.1ms) begin transaction
2807
+ ---------------------------------------
2808
+ FormalizerConfigTest: test_valid_config
2809
+ ---------------------------------------
2810
+  (0.1ms) rollback transaction
2811
+  (0.1ms) begin transaction
2812
+ --------------------------------------------
2813
+ FormalizerFormFieldTest: test_add_form_field
2814
+ --------------------------------------------
2815
+  (0.1ms) rollback transaction
2816
+  (0.1ms) begin transaction
2817
+ -----------------------------------------
2818
+ FormalizerTest: test_fill_and_export_html
2819
+ -----------------------------------------
2820
+  (0.1ms) rollback transaction
2821
+  (0.1ms) begin transaction
2822
+ -------------------------------------------
2823
+ FormalizerTest: test_formalizer_fill_fields
2824
+ -------------------------------------------
2825
+  (0.1ms) rollback transaction
2826
+  (0.1ms) begin transaction
2827
+ ----------------------------------------
2828
+ FormalizerTest: test_fill_and_export_pdf
2829
+ ----------------------------------------
2830
+  (0.8ms) rollback transaction
2831
+  (0.2ms) begin transaction
2832
+ -------------------------
2833
+ FormalizerTest: test_tags
2834
+ -------------------------
2835
+  (0.1ms) rollback transaction
2836
+  (0.1ms) begin transaction
2837
+ --------------------------
2838
+ UtilsTest: test_file_found
2839
+ --------------------------
2840
+  (0.1ms) rollback transaction
2841
+  (0.1ms) begin transaction
2842
+ ------------------------------
2843
+ UtilsTest: test_file_not_found
2844
+ ------------------------------
2845
+  (0.1ms) rollback transaction
2846
+  (0.2ms) begin transaction
2847
+ ----------------------------------------
2848
+ FormFieldTest: test_set_form_field_value
2849
+ ----------------------------------------
2850
+  (0.1ms) rollback transaction
2851
+  (0.3ms) begin transaction
2852
+ -------------------------------------------
2853
+ FormFieldTest: test_form_field_valid_params
2854
+ -------------------------------------------
2855
+  (0.1ms) rollback transaction
2856
+  (0.1ms) begin transaction
2857
+ ---------------------------------------------
2858
+ FormFieldTest: test_form_field_invalid_params
2859
+ ---------------------------------------------
2860
+  (0.1ms) rollback transaction
2861
+  (0.1ms) begin transaction
2862
+ -------------------------------
2863
+ FormFieldTest: test_html_render
2864
+ -------------------------------
2865
+  (0.1ms) rollback transaction
2866
+  (0.1ms) begin transaction
2867
+ -----------------------------------------
2868
+ FormalizerTest: test_fill_and_export_html
2869
+ -----------------------------------------
2870
+  (0.1ms) rollback transaction
2871
+  (0.1ms) begin transaction
2872
+ -------------------------
2873
+ FormalizerTest: test_tags
2874
+ -------------------------
2875
+  (0.1ms) rollback transaction
2876
+  (0.1ms) begin transaction
2877
+ -------------------------------------------
2878
+ FormalizerTest: test_formalizer_fill_fields
2879
+ -------------------------------------------
2880
+  (1.3ms) rollback transaction
2881
+  (0.2ms) begin transaction
2882
+ ----------------------------------------
2883
+ FormalizerTest: test_fill_and_export_pdf
2884
+ ----------------------------------------
2885
+  (0.1ms) rollback transaction
2886
+  (0.1ms) begin transaction
2887
+ ----------------------------------------
2888
+ FormalizerFormTest: test_add_form_errors
2889
+ ----------------------------------------
2890
+  (0.1ms) rollback transaction
2891
+  (0.1ms) begin transaction
2892
+ --------------------------
2893
+ UtilsTest: test_file_found
2894
+ --------------------------
2895
+  (0.1ms) rollback transaction
2896
+  (0.1ms) begin transaction
2897
+ ------------------------------
2898
+ UtilsTest: test_file_not_found
2899
+ ------------------------------
2900
+  (0.0ms) rollback transaction
2901
+  (0.1ms) begin transaction
2902
+ --------------------------------------------
2903
+ FormalizerFormFieldTest: test_add_form_field
2904
+ --------------------------------------------
2905
+  (0.1ms) rollback transaction
2906
+  (0.1ms) begin transaction
2907
+ -----------------------------------------
2908
+ FormalizerConfigTest: test_invalid_config
2909
+ -----------------------------------------
2910
+  (0.2ms) rollback transaction
2911
+  (0.1ms) begin transaction
2912
+ ---------------------------------------
2913
+ FormalizerConfigTest: test_valid_config
2914
+ ---------------------------------------
2915
+  (0.1ms) rollback transaction
2916
+  (0.1ms) begin transaction
2917
+ ------------------------
2918
+ FormTest: test_fill_form
2919
+ ------------------------
2920
+  (0.0ms) rollback transaction
2921
+  (0.5ms) begin transaction
2922
+ ----------------------------
2923
+ FormTest: test_export_to_pdf
2924
+ ----------------------------
2925
+  (0.1ms) rollback transaction
2926
+  (0.1ms) begin transaction
2927
+ --------------------------------------------
2928
+ FormTest: test_form_from_invalid_direct_html
2929
+ --------------------------------------------
2930
+  (0.1ms) rollback transaction
2931
+  (0.1ms) begin transaction
2932
+ ----------------------------------
2933
+ FormTest: test_form_invalid_params
2934
+ ----------------------------------
2935
+  (0.0ms) rollback transaction
2936
+  (0.1ms) begin transaction
2937
+ -------------------------------------
2938
+ FormTest: test_from_from_invalid_path
2939
+ -------------------------------------
2940
+  (0.1ms) rollback transaction
2941
+  (0.1ms) begin transaction
2942
+ -------------------------------------------
2943
+ FormTest: test_fill_form_with_missing_param
2944
+ -------------------------------------------
2945
+  (0.1ms) rollback transaction
2946
+  (0.1ms) begin transaction
2947
+ ---------------------------------
2948
+ FormTest: test_new_form_from_path
2949
+ ---------------------------------
2950
+  (0.1ms) rollback transaction
2951
+  (0.1ms) begin transaction
2952
+ --------------------------------------------------
2953
+ FormTest: test_form_from_valid_path_but_wrong_html
2954
+ --------------------------------------------------
2955
+  (0.1ms) rollback transaction
2956
+  (0.1ms) begin transaction
2957
+ -----------------------------------------------------
2958
+ FormTest: test_fill_form_with_missing_required_fields
2959
+ -----------------------------------------------------
2960
+  (0.1ms) rollback transaction
2961
+  (0.1ms) begin transaction
2962
+ --------------------------
2963
+ UtilsTest: test_file_found
2964
+ --------------------------
2965
+  (0.0ms) rollback transaction
2966
+  (0.1ms) begin transaction
2967
+ ------------------------------
2968
+ UtilsTest: test_file_not_found
2969
+ ------------------------------
2970
+  (0.0ms) rollback transaction
2971
+  (0.0ms) begin transaction
2972
+ ----------------------------------------
2973
+ FormalizerFormTest: test_add_form_errors
2974
+ ----------------------------------------
2975
+  (0.2ms) rollback transaction
2976
+  (0.1ms) begin transaction
2977
+ -------------------------------------------
2978
+ FormTest: test_fill_form_with_missing_param
2979
+ -------------------------------------------
2980
+  (0.1ms) rollback transaction
2981
+  (0.1ms) begin transaction
2982
+ --------------------------------------------------
2983
+ FormTest: test_form_from_valid_path_but_wrong_html
2984
+ --------------------------------------------------
2985
+  (0.1ms) rollback transaction
2986
+  (0.1ms) begin transaction
2987
+ -----------------------------------------------------
2988
+ FormTest: test_fill_form_with_missing_required_fields
2989
+ -----------------------------------------------------
2990
+  (0.3ms) rollback transaction
2991
+  (0.1ms) begin transaction
2992
+ ----------------------------
2993
+ FormTest: test_export_to_pdf
2994
+ ----------------------------
2995
+  (0.2ms) rollback transaction
2996
+  (0.1ms) begin transaction
2997
+ ----------------------------------
2998
+ FormTest: test_form_invalid_params
2999
+ ----------------------------------
3000
+  (0.6ms) rollback transaction
3001
+  (0.1ms) begin transaction
3002
+ ------------------------
3003
+ FormTest: test_fill_form
3004
+ ------------------------
3005
+  (0.1ms) rollback transaction
3006
+  (0.1ms) begin transaction
3007
+ ---------------------------------
3008
+ FormTest: test_new_form_from_path
3009
+ ---------------------------------
3010
+  (0.1ms) rollback transaction
3011
+  (0.1ms) begin transaction
3012
+ -------------------------------------
3013
+ FormTest: test_from_from_invalid_path
3014
+ -------------------------------------
3015
+  (0.1ms) rollback transaction
3016
+  (0.3ms) begin transaction
3017
+ --------------------------------------------
3018
+ FormTest: test_form_from_invalid_direct_html
3019
+ --------------------------------------------
3020
+  (0.1ms) rollback transaction
3021
+  (0.1ms) begin transaction
3022
+ -----------------------------------------
3023
+ FormalizerTest: test_fill_and_export_html
3024
+ -----------------------------------------
3025
+  (0.1ms) rollback transaction
3026
+  (0.1ms) begin transaction
3027
+ -------------------------------------------
3028
+ FormalizerTest: test_formalizer_fill_fields
3029
+ -------------------------------------------
3030
+  (0.1ms) rollback transaction
3031
+  (0.1ms) begin transaction
3032
+ -------------------------
3033
+ FormalizerTest: test_tags
3034
+ -------------------------
3035
+  (0.4ms) rollback transaction
3036
+  (0.0ms) begin transaction
3037
+ ----------------------------------------
3038
+ FormalizerTest: test_fill_and_export_pdf
3039
+ ----------------------------------------
3040
+  (0.1ms) rollback transaction
3041
+  (0.1ms) begin transaction
3042
+ ----------------------------------------
3043
+ FormFieldTest: test_set_form_field_value
3044
+ ----------------------------------------
3045
+  (0.0ms) rollback transaction
3046
+  (0.1ms) begin transaction
3047
+ -------------------------------
3048
+ FormFieldTest: test_html_render
3049
+ -------------------------------
3050
+  (0.1ms) rollback transaction
3051
+  (0.1ms) begin transaction
3052
+ -------------------------------------------
3053
+ FormFieldTest: test_form_field_valid_params
3054
+ -------------------------------------------
3055
+  (0.1ms) rollback transaction
3056
+  (0.1ms) begin transaction
3057
+ ---------------------------------------------
3058
+ FormFieldTest: test_form_field_invalid_params
3059
+ ---------------------------------------------
3060
+  (0.1ms) rollback transaction
3061
+  (0.1ms) begin transaction
3062
+ --------------------------------------------
3063
+ FormalizerFormFieldTest: test_add_form_field
3064
+ --------------------------------------------
3065
+  (0.1ms) rollback transaction
3066
+  (0.1ms) begin transaction
3067
+ -----------------------------------------
3068
+ FormalizerConfigTest: test_invalid_config
3069
+ -----------------------------------------
3070
+  (0.1ms) rollback transaction
3071
+  (0.1ms) begin transaction
3072
+ ---------------------------------------
3073
+ FormalizerConfigTest: test_valid_config
3074
+ ---------------------------------------
3075
+  (0.1ms) rollback transaction
3076
+  (0.1ms) begin transaction
3077
+ --------------------------------------------
3078
+ FormalizerFormFieldTest: test_add_form_field
3079
+ --------------------------------------------
3080
+  (0.1ms) rollback transaction
3081
+  (0.1ms) begin transaction
3082
+ -----------------------------------------
3083
+ FormalizerTest: test_fill_and_export_html
3084
+ -----------------------------------------
3085
+  (0.1ms) rollback transaction
3086
+  (0.4ms) begin transaction
3087
+ ----------------------------------------
3088
+ FormalizerTest: test_fill_and_export_pdf
3089
+ ----------------------------------------
3090
+  (0.1ms) rollback transaction
3091
+  (0.1ms) begin transaction
3092
+ -------------------------
3093
+ FormalizerTest: test_tags
3094
+ -------------------------
3095
+  (1.2ms) rollback transaction
3096
+  (0.1ms) begin transaction
3097
+ -------------------------------------------
3098
+ FormalizerTest: test_formalizer_fill_fields
3099
+ -------------------------------------------
3100
+  (0.1ms) rollback transaction
3101
+  (0.1ms) begin transaction
3102
+ -----------------------------------------------------
3103
+ FormTest: test_fill_form_with_missing_required_fields
3104
+ -----------------------------------------------------
3105
+  (0.1ms) rollback transaction
3106
+  (0.1ms) begin transaction
3107
+ -------------------------------------
3108
+ FormTest: test_from_from_invalid_path
3109
+ -------------------------------------
3110
+  (0.1ms) rollback transaction
3111
+  (0.1ms) begin transaction
3112
+ -------------------------------------------
3113
+ FormTest: test_fill_form_with_missing_param
3114
+ -------------------------------------------
3115
+  (0.1ms) rollback transaction
3116
+  (0.1ms) begin transaction
3117
+ ----------------------------------
3118
+ FormTest: test_form_invalid_params
3119
+ ----------------------------------
3120
+  (0.1ms) rollback transaction
3121
+  (0.1ms) begin transaction
3122
+ ------------------------
3123
+ FormTest: test_fill_form
3124
+ ------------------------
3125
+  (0.1ms) rollback transaction
3126
+  (0.1ms) begin transaction
3127
+ ----------------------------
3128
+ FormTest: test_export_to_pdf
3129
+ ----------------------------
3130
+  (0.2ms) rollback transaction
3131
+  (0.1ms) begin transaction
3132
+ --------------------------------------------
3133
+ FormTest: test_form_from_invalid_direct_html
3134
+ --------------------------------------------
3135
+  (0.1ms) rollback transaction
3136
+  (0.1ms) begin transaction
3137
+ --------------------------------------------------
3138
+ FormTest: test_form_from_valid_path_but_wrong_html
3139
+ --------------------------------------------------
3140
+  (0.1ms) rollback transaction
3141
+  (0.1ms) begin transaction
3142
+ ---------------------------------
3143
+ FormTest: test_new_form_from_path
3144
+ ---------------------------------
3145
+  (0.1ms) rollback transaction
3146
+  (0.1ms) begin transaction
3147
+ -----------------------------------------
3148
+ FormalizerConfigTest: test_invalid_config
3149
+ -----------------------------------------
3150
+  (0.1ms) rollback transaction
3151
+  (0.1ms) begin transaction
3152
+ ---------------------------------------
3153
+ FormalizerConfigTest: test_valid_config
3154
+ ---------------------------------------
3155
+  (0.1ms) rollback transaction
3156
+  (0.5ms) begin transaction
3157
+ ------------------------------
3158
+ UtilsTest: test_file_not_found
3159
+ ------------------------------
3160
+  (0.0ms) rollback transaction
3161
+  (0.1ms) begin transaction
3162
+ --------------------------
3163
+ UtilsTest: test_file_found
3164
+ --------------------------
3165
+  (0.0ms) rollback transaction
3166
+  (0.1ms) begin transaction
3167
+ ----------------------------------------
3168
+ FormalizerFormTest: test_add_form_errors
3169
+ ----------------------------------------
3170
+  (0.1ms) rollback transaction
3171
+  (0.1ms) begin transaction
3172
+ ---------------------------------------------
3173
+ FormFieldTest: test_form_field_invalid_params
3174
+ ---------------------------------------------
3175
+  (0.1ms) rollback transaction
3176
+  (0.1ms) begin transaction
3177
+ -------------------------------
3178
+ FormFieldTest: test_html_render
3179
+ -------------------------------
3180
+  (0.1ms) rollback transaction
3181
+  (0.1ms) begin transaction
3182
+ -------------------------------------------
3183
+ FormFieldTest: test_form_field_valid_params
3184
+ -------------------------------------------
3185
+  (0.1ms) rollback transaction
3186
+  (0.1ms) begin transaction
3187
+ ----------------------------------------
3188
+ FormFieldTest: test_set_form_field_value
3189
+ ----------------------------------------
3190
+  (0.1ms) rollback transaction
3191
+  (0.1ms) begin transaction
3192
+ -----------------------------------------
3193
+ FormalizerTest: test_fill_and_export_html
3194
+ -----------------------------------------
3195
+  (0.1ms) rollback transaction
3196
+  (0.1ms) begin transaction
3197
+ -------------------------------------------
3198
+ FormalizerTest: test_formalizer_fill_fields
3199
+ -------------------------------------------
3200
+  (0.1ms) rollback transaction
3201
+  (0.1ms) begin transaction
3202
+ -------------------------
3203
+ FormalizerTest: test_tags
3204
+ -------------------------
3205
+  (0.1ms) rollback transaction
3206
+  (0.1ms) begin transaction
3207
+ ----------------------------------------
3208
+ FormalizerTest: test_fill_and_export_pdf
3209
+ ----------------------------------------
3210
+  (0.1ms) rollback transaction
3211
+  (0.1ms) begin transaction
3212
+ ----------------------------------------
3213
+ FormalizerFormTest: test_add_form_errors
3214
+ ----------------------------------------
3215
+  (0.1ms) rollback transaction
3216
+  (0.1ms) begin transaction
3217
+ -------------------------------------------
3218
+ FormFieldTest: test_form_field_valid_params
3219
+ -------------------------------------------
3220
+  (0.1ms) rollback transaction
3221
+  (0.1ms) begin transaction
3222
+ ---------------------------------------------
3223
+ FormFieldTest: test_form_field_invalid_params
3224
+ ---------------------------------------------
3225
+  (0.1ms) rollback transaction
3226
+  (0.1ms) begin transaction
3227
+ ----------------------------------------
3228
+ FormFieldTest: test_set_form_field_value
3229
+ ----------------------------------------
3230
+  (0.1ms) rollback transaction
3231
+  (0.1ms) begin transaction
3232
+ -------------------------------
3233
+ FormFieldTest: test_html_render
3234
+ -------------------------------
3235
+  (0.1ms) rollback transaction
3236
+  (0.1ms) begin transaction
3237
+ --------------------------------------------
3238
+ FormalizerFormFieldTest: test_add_form_field
3239
+ --------------------------------------------
3240
+  (0.1ms) rollback transaction
3241
+  (0.1ms) begin transaction
3242
+ --------------------------
3243
+ UtilsTest: test_file_found
3244
+ --------------------------
3245
+  (0.1ms) rollback transaction
3246
+  (0.1ms) begin transaction
3247
+ ------------------------------
3248
+ UtilsTest: test_file_not_found
3249
+ ------------------------------
3250
+  (0.0ms) rollback transaction
3251
+  (0.1ms) begin transaction
3252
+ ----------------------------------
3253
+ FormTest: test_form_invalid_params
3254
+ ----------------------------------
3255
+  (0.0ms) rollback transaction
3256
+  (0.1ms) begin transaction
3257
+ ----------------------------
3258
+ FormTest: test_export_to_pdf
3259
+ ----------------------------
3260
+  (0.9ms) rollback transaction
3261
+  (0.1ms) begin transaction
3262
+ ---------------------------------
3263
+ FormTest: test_new_form_from_path
3264
+ ---------------------------------
3265
+  (0.1ms) rollback transaction
3266
+  (0.1ms) begin transaction
3267
+ -----------------------------------------------------
3268
+ FormTest: test_fill_form_with_missing_required_fields
3269
+ -----------------------------------------------------
3270
+  (0.1ms) rollback transaction
3271
+  (0.2ms) begin transaction
3272
+ ------------------------
3273
+ FormTest: test_fill_form
3274
+ ------------------------
3275
+  (0.1ms) rollback transaction
3276
+  (0.1ms) begin transaction
3277
+ --------------------------------------------
3278
+ FormTest: test_form_from_invalid_direct_html
3279
+ --------------------------------------------
3280
+  (0.1ms) rollback transaction
3281
+  (0.1ms) begin transaction
3282
+ -------------------------------------
3283
+ FormTest: test_from_from_invalid_path
3284
+ -------------------------------------
3285
+  (0.1ms) rollback transaction
3286
+  (0.1ms) begin transaction
3287
+ --------------------------------------------------
3288
+ FormTest: test_form_from_valid_path_but_wrong_html
3289
+ --------------------------------------------------
3290
+  (0.1ms) rollback transaction
3291
+  (0.1ms) begin transaction
3292
+ -------------------------------------------
3293
+ FormTest: test_fill_form_with_missing_param
3294
+ -------------------------------------------
3295
+  (0.1ms) rollback transaction
3296
+  (0.1ms) begin transaction
3297
+ -----------------------------------------
3298
+ FormalizerConfigTest: test_invalid_config
3299
+ -----------------------------------------
3300
+  (0.1ms) rollback transaction
3301
+  (0.1ms) begin transaction
3302
+ ---------------------------------------
3303
+ FormalizerConfigTest: test_valid_config
3304
+ ---------------------------------------
3305
+  (0.1ms) rollback transaction
3306
+  (0.1ms) begin transaction
3307
+ ----------------------------------------
3308
+ FormalizerFormTest: test_add_form_errors
3309
+ ----------------------------------------
3310
+  (0.1ms) rollback transaction
3311
+  (0.1ms) begin transaction
3312
+ ---------------------------------------------
3313
+ FormFieldTest: test_form_field_invalid_params
3314
+ ---------------------------------------------
3315
+  (0.0ms) rollback transaction
3316
+  (0.1ms) begin transaction
3317
+ -------------------------------
3318
+ FormFieldTest: test_html_render
3319
+ -------------------------------
3320
+  (0.1ms) rollback transaction
3321
+  (0.1ms) begin transaction
3322
+ -------------------------------------------
3323
+ FormFieldTest: test_form_field_valid_params
3324
+ -------------------------------------------
3325
+  (0.0ms) rollback transaction
3326
+  (0.1ms) begin transaction
3327
+ ----------------------------------------
3328
+ FormFieldTest: test_set_form_field_value
3329
+ ----------------------------------------
3330
+  (0.0ms) rollback transaction
3331
+  (0.0ms) begin transaction
3332
+ -----------------------------------------
3333
+ FormalizerConfigTest: test_invalid_config
3334
+ -----------------------------------------
3335
+  (0.1ms) rollback transaction
3336
+  (0.1ms) begin transaction
3337
+ ---------------------------------------
3338
+ FormalizerConfigTest: test_valid_config
3339
+ ---------------------------------------
3340
+  (0.1ms) rollback transaction
3341
+  (0.1ms) begin transaction
3342
+ --------------------------
3343
+ UtilsTest: test_file_found
3344
+ --------------------------
3345
+  (0.1ms) rollback transaction
3346
+  (0.1ms) begin transaction
3347
+ ------------------------------
3348
+ UtilsTest: test_file_not_found
3349
+ ------------------------------
3350
+  (0.0ms) rollback transaction
3351
+  (0.0ms) begin transaction
3352
+ ----------------------------------------
3353
+ FormalizerTest: test_fill_and_export_pdf
3354
+ ----------------------------------------
3355
+  (0.2ms) rollback transaction
3356
+  (0.1ms) begin transaction
3357
+ -------------------------------------------
3358
+ FormalizerTest: test_formalizer_fill_fields
3359
+ -------------------------------------------
3360
+  (0.4ms) rollback transaction
3361
+  (0.1ms) begin transaction
3362
+ -----------------------------------------
3363
+ FormalizerTest: test_fill_and_export_html
3364
+ -----------------------------------------
3365
+  (0.1ms) rollback transaction
3366
+  (0.2ms) begin transaction
3367
+ -------------------------
3368
+ FormalizerTest: test_tags
3369
+ -------------------------
3370
+  (0.1ms) rollback transaction
3371
+  (0.1ms) begin transaction
3372
+ --------------------------------------------
3373
+ FormalizerFormFieldTest: test_add_form_field
3374
+ --------------------------------------------
3375
+  (0.1ms) rollback transaction
3376
+  (0.1ms) begin transaction
3377
+ ----------------------------------
3378
+ FormTest: test_form_invalid_params
3379
+ ----------------------------------
3380
+  (0.0ms) rollback transaction
3381
+  (0.1ms) begin transaction
3382
+ -------------------------------------------
3383
+ FormTest: test_fill_form_with_missing_param
3384
+ -------------------------------------------
3385
+  (0.1ms) rollback transaction
3386
+  (0.1ms) begin transaction
3387
+ ------------------------
3388
+ FormTest: test_fill_form
3389
+ ------------------------
3390
+  (0.1ms) rollback transaction
3391
+  (0.1ms) begin transaction
3392
+ ----------------------------
3393
+ FormTest: test_export_to_pdf
3394
+ ----------------------------
3395
+  (0.2ms) rollback transaction
3396
+  (0.1ms) begin transaction
3397
+ -----------------------------------------------------
3398
+ FormTest: test_fill_form_with_missing_required_fields
3399
+ -----------------------------------------------------
3400
+  (0.1ms) rollback transaction
3401
+  (0.1ms) begin transaction
3402
+ --------------------------------------------------
3403
+ FormTest: test_form_from_valid_path_but_wrong_html
3404
+ --------------------------------------------------
3405
+  (0.1ms) rollback transaction
3406
+  (0.1ms) begin transaction
3407
+ ---------------------------------
3408
+ FormTest: test_new_form_from_path
3409
+ ---------------------------------
3410
+  (0.1ms) rollback transaction
3411
+  (0.1ms) begin transaction
3412
+ --------------------------------------------
3413
+ FormTest: test_form_from_invalid_direct_html
3414
+ --------------------------------------------
3415
+  (0.1ms) rollback transaction
3416
+  (0.1ms) begin transaction
3417
+ -------------------------------------
3418
+ FormTest: test_from_from_invalid_path
3419
+ -------------------------------------
3420
+  (0.1ms) rollback transaction
3421
+  (0.1ms) begin transaction
3422
+ --------------------------
3423
+ UtilsTest: test_file_found
3424
+ --------------------------
3425
+  (0.1ms) rollback transaction
3426
+  (0.1ms) begin transaction
3427
+ ------------------------------
3428
+ UtilsTest: test_file_not_found
3429
+ ------------------------------
3430
+  (0.1ms) rollback transaction
3431
+  (0.1ms) begin transaction
3432
+ ---------------------------------------------
3433
+ FormFieldTest: test_form_field_invalid_params
3434
+ ---------------------------------------------
3435
+  (0.0ms) rollback transaction
3436
+  (0.1ms) begin transaction
3437
+ -------------------------------------------
3438
+ FormFieldTest: test_form_field_valid_params
3439
+ -------------------------------------------
3440
+  (0.0ms) rollback transaction
3441
+  (0.1ms) begin transaction
3442
+ -------------------------------
3443
+ FormFieldTest: test_html_render
3444
+ -------------------------------
3445
+  (0.0ms) rollback transaction
3446
+  (0.1ms) begin transaction
3447
+ ----------------------------------------
3448
+ FormFieldTest: test_set_form_field_value
3449
+ ----------------------------------------
3450
+  (0.0ms) rollback transaction
3451
+  (0.0ms) begin transaction
3452
+ --------------------------------------------------
3453
+ FormTest: test_form_from_valid_path_but_wrong_html
3454
+ --------------------------------------------------
3455
+  (0.2ms) rollback transaction
3456
+  (0.1ms) begin transaction
3457
+ ------------------------
3458
+ FormTest: test_fill_form
3459
+ ------------------------
3460
+  (0.1ms) rollback transaction
3461
+  (0.1ms) begin transaction
3462
+ ----------------------------------
3463
+ FormTest: test_form_invalid_params
3464
+ ----------------------------------
3465
+  (0.1ms) rollback transaction
3466
+  (0.1ms) begin transaction
3467
+ ----------------------------
3468
+ FormTest: test_export_to_pdf
3469
+ ----------------------------
3470
+  (0.2ms) rollback transaction
3471
+  (0.1ms) begin transaction
3472
+ -------------------------------------
3473
+ FormTest: test_from_from_invalid_path
3474
+ -------------------------------------
3475
+  (0.1ms) rollback transaction
3476
+  (0.1ms) begin transaction
3477
+ -----------------------------------------------------
3478
+ FormTest: test_fill_form_with_missing_required_fields
3479
+ -----------------------------------------------------
3480
+  (0.1ms) rollback transaction
3481
+  (0.1ms) begin transaction
3482
+ ---------------------------------
3483
+ FormTest: test_new_form_from_path
3484
+ ---------------------------------
3485
+  (0.1ms) rollback transaction
3486
+  (0.1ms) begin transaction
3487
+ -------------------------------------------
3488
+ FormTest: test_fill_form_with_missing_param
3489
+ -------------------------------------------
3490
+  (0.1ms) rollback transaction
3491
+  (0.1ms) begin transaction
3492
+ --------------------------------------------
3493
+ FormTest: test_form_from_invalid_direct_html
3494
+ --------------------------------------------
3495
+  (0.1ms) rollback transaction
3496
+  (0.1ms) begin transaction
3497
+ --------------------------------------------
3498
+ FormalizerFormFieldTest: test_add_form_field
3499
+ --------------------------------------------
3500
+  (0.1ms) rollback transaction
3501
+  (0.1ms) begin transaction
3502
+ ---------------------------------------
3503
+ FormalizerConfigTest: test_valid_config
3504
+ ---------------------------------------
3505
+  (0.1ms) rollback transaction
3506
+  (0.1ms) begin transaction
3507
+ -----------------------------------------
3508
+ FormalizerConfigTest: test_invalid_config
3509
+ -----------------------------------------
3510
+  (0.1ms) rollback transaction
3511
+  (0.1ms) begin transaction
3512
+ ----------------------------------------
3513
+ FormalizerFormTest: test_add_form_errors
3514
+ ----------------------------------------
3515
+  (0.1ms) rollback transaction
3516
+  (0.1ms) begin transaction
3517
+ -------------------------
3518
+ FormalizerTest: test_tags
3519
+ -------------------------
3520
+  (0.1ms) rollback transaction
3521
+  (0.1ms) begin transaction
3522
+ ----------------------------------------
3523
+ FormalizerTest: test_fill_and_export_pdf
3524
+ ----------------------------------------
3525
+  (0.1ms) rollback transaction
3526
+  (0.1ms) begin transaction
3527
+ -----------------------------------------
3528
+ FormalizerTest: test_fill_and_export_html
3529
+ -----------------------------------------
3530
+  (0.1ms) rollback transaction
3531
+  (0.1ms) begin transaction
3532
+ -------------------------------------------
3533
+ FormalizerTest: test_formalizer_fill_fields
3534
+ -------------------------------------------
3535
+  (0.1ms) rollback transaction
3536
+  (0.1ms) begin transaction
3537
+ ----------------------------------------
3538
+ FormalizerTest: test_fill_and_export_pdf
3539
+ ----------------------------------------
3540
+  (0.2ms) rollback transaction
3541
+  (0.1ms) begin transaction
3542
+ -----------------------------------------
3543
+ FormalizerTest: test_fill_and_export_html
3544
+ -----------------------------------------
3545
+  (0.1ms) rollback transaction
3546
+  (0.1ms) begin transaction
3547
+ -------------------------------------------
3548
+ FormalizerTest: test_formalizer_fill_fields
3549
+ -------------------------------------------
3550
+  (0.1ms) rollback transaction
3551
+  (0.1ms) begin transaction
3552
+ -------------------------
3553
+ FormalizerTest: test_tags
3554
+ -------------------------
3555
+  (0.1ms) rollback transaction
3556
+  (0.1ms) begin transaction
3557
+ --------------------------------------------
3558
+ FormalizerFormFieldTest: test_add_form_field
3559
+ --------------------------------------------
3560
+  (0.1ms) rollback transaction
3561
+  (0.0ms) begin transaction
3562
+ ----------------------------------------
3563
+ FormFieldTest: test_set_form_field_value
3564
+ ----------------------------------------
3565
+  (0.0ms) rollback transaction
3566
+  (0.4ms) begin transaction
3567
+ -------------------------------------------
3568
+ FormFieldTest: test_form_field_valid_params
3569
+ -------------------------------------------
3570
+  (0.1ms) rollback transaction
3571
+  (0.1ms) begin transaction
3572
+ ---------------------------------------------
3573
+ FormFieldTest: test_form_field_invalid_params
3574
+ ---------------------------------------------
3575
+  (0.1ms) rollback transaction
3576
+  (0.1ms) begin transaction
3577
+ -------------------------------
3578
+ FormFieldTest: test_html_render
3579
+ -------------------------------
3580
+  (0.4ms) rollback transaction
3581
+  (0.0ms) begin transaction
3582
+ -------------------------------------
3583
+ FormTest: test_from_from_invalid_path
3584
+ -------------------------------------
3585
+  (0.0ms) rollback transaction
3586
+  (0.1ms) begin transaction
3587
+ -------------------------------------------
3588
+ FormTest: test_fill_form_with_missing_param
3589
+ -------------------------------------------
3590
+  (0.0ms) rollback transaction
3591
+  (0.1ms) begin transaction
3592
+ ----------------------------
3593
+ FormTest: test_export_to_pdf
3594
+ ----------------------------
3595
+  (0.2ms) rollback transaction
3596
+  (0.1ms) begin transaction
3597
+ ----------------------------------
3598
+ FormTest: test_form_invalid_params
3599
+ ----------------------------------
3600
+  (0.0ms) rollback transaction
3601
+  (0.1ms) begin transaction
3602
+ ---------------------------------
3603
+ FormTest: test_new_form_from_path
3604
+ ---------------------------------
3605
+  (0.1ms) rollback transaction
3606
+  (0.1ms) begin transaction
3607
+ --------------------------------------------
3608
+ FormTest: test_form_from_invalid_direct_html
3609
+ --------------------------------------------
3610
+  (0.1ms) rollback transaction
3611
+  (0.1ms) begin transaction
3612
+ -----------------------------------------------------
3613
+ FormTest: test_fill_form_with_missing_required_fields
3614
+ -----------------------------------------------------
3615
+  (0.1ms) rollback transaction
3616
+  (0.1ms) begin transaction
3617
+ ------------------------
3618
+ FormTest: test_fill_form
3619
+ ------------------------
3620
+  (0.1ms) rollback transaction
3621
+  (0.1ms) begin transaction
3622
+ --------------------------------------------------
3623
+ FormTest: test_form_from_valid_path_but_wrong_html
3624
+ --------------------------------------------------
3625
+  (0.1ms) rollback transaction
3626
+  (0.1ms) begin transaction
3627
+ --------------------------
3628
+ UtilsTest: test_file_found
3629
+ --------------------------
3630
+  (0.0ms) rollback transaction
3631
+  (0.4ms) begin transaction
3632
+ ------------------------------
3633
+ UtilsTest: test_file_not_found
3634
+ ------------------------------
3635
+  (0.0ms) rollback transaction
3636
+  (0.1ms) begin transaction
3637
+ -----------------------------------------
3638
+ FormalizerConfigTest: test_invalid_config
3639
+ -----------------------------------------
3640
+  (0.1ms) rollback transaction
3641
+  (0.1ms) begin transaction
3642
+ ---------------------------------------
3643
+ FormalizerConfigTest: test_valid_config
3644
+ ---------------------------------------
3645
+  (0.1ms) rollback transaction
3646
+  (0.1ms) begin transaction
3647
+ ----------------------------------------
3648
+ FormalizerFormTest: test_add_form_errors
3649
+ ----------------------------------------
3650
+  (0.1ms) rollback transaction
3651
+  (0.1ms) begin transaction
3652
+ --------------------------------------------
3653
+ FormalizerFormFieldTest: test_add_form_field
3654
+ --------------------------------------------
3655
+  (0.1ms) rollback transaction
3656
+  (0.1ms) begin transaction
3657
+ --------------------------------------------
3658
+ FormTest: test_form_from_invalid_direct_html
3659
+ --------------------------------------------
3660
+  (0.0ms) rollback transaction
3661
+  (0.3ms) begin transaction
3662
+ ----------------------------------
3663
+ FormTest: test_form_invalid_params
3664
+ ----------------------------------
3665
+  (0.0ms) rollback transaction
3666
+  (0.1ms) begin transaction
3667
+ -------------------------------------------
3668
+ FormTest: test_fill_form_with_missing_param
3669
+ -------------------------------------------
3670
+  (0.0ms) rollback transaction
3671
+  (0.1ms) begin transaction
3672
+ --------------------------------------------------
3673
+ FormTest: test_form_from_valid_path_but_wrong_html
3674
+ --------------------------------------------------
3675
+  (0.1ms) rollback transaction
3676
+  (0.1ms) begin transaction
3677
+ ----------------------------
3678
+ FormTest: test_export_to_pdf
3679
+ ----------------------------
3680
+  (0.1ms) rollback transaction
3681
+  (0.1ms) begin transaction
3682
+ ---------------------------------
3683
+ FormTest: test_new_form_from_path
3684
+ ---------------------------------
3685
+  (0.1ms) rollback transaction
3686
+  (0.1ms) begin transaction
3687
+ -------------------------------------
3688
+ FormTest: test_from_from_invalid_path
3689
+ -------------------------------------
3690
+  (0.1ms) rollback transaction
3691
+  (0.1ms) begin transaction
3692
+ ------------------------
3693
+ FormTest: test_fill_form
3694
+ ------------------------
3695
+  (0.0ms) rollback transaction
3696
+  (0.1ms) begin transaction
3697
+ -----------------------------------------------------
3698
+ FormTest: test_fill_form_with_missing_required_fields
3699
+ -----------------------------------------------------
3700
+  (0.1ms) rollback transaction
3701
+  (0.6ms) begin transaction
3702
+ -----------------------------------------
3703
+ FormalizerConfigTest: test_invalid_config
3704
+ -----------------------------------------
3705
+  (0.1ms) rollback transaction
3706
+  (0.1ms) begin transaction
3707
+ ---------------------------------------
3708
+ FormalizerConfigTest: test_valid_config
3709
+ ---------------------------------------
3710
+  (0.1ms) rollback transaction
3711
+  (0.1ms) begin transaction
3712
+ ----------------------------------------
3713
+ FormalizerFormTest: test_add_form_errors
3714
+ ----------------------------------------
3715
+  (0.1ms) rollback transaction
3716
+  (0.3ms) begin transaction
3717
+ ---------------------------------------------
3718
+ FormFieldTest: test_form_field_invalid_params
3719
+ ---------------------------------------------
3720
+  (0.0ms) rollback transaction
3721
+  (0.1ms) begin transaction
3722
+ -------------------------------
3723
+ FormFieldTest: test_html_render
3724
+ -------------------------------
3725
+  (0.1ms) rollback transaction
3726
+  (0.1ms) begin transaction
3727
+ -------------------------------------------
3728
+ FormFieldTest: test_form_field_valid_params
3729
+ -------------------------------------------
3730
+  (0.0ms) rollback transaction
3731
+  (0.1ms) begin transaction
3732
+ ----------------------------------------
3733
+ FormFieldTest: test_set_form_field_value
3734
+ ----------------------------------------
3735
+  (0.0ms) rollback transaction
3736
+  (0.1ms) begin transaction
3737
+ --------------------------
3738
+ UtilsTest: test_file_found
3739
+ --------------------------
3740
+  (0.1ms) rollback transaction
3741
+  (0.0ms) begin transaction
3742
+ ------------------------------
3743
+ UtilsTest: test_file_not_found
3744
+ ------------------------------
3745
+  (0.0ms) rollback transaction
3746
+  (0.1ms) begin transaction
3747
+ -------------------------
3748
+ FormalizerTest: test_tags
3749
+ -------------------------
3750
+  (0.1ms) rollback transaction
3751
+  (0.0ms) begin transaction
3752
+ -------------------------------------------
3753
+ FormalizerTest: test_formalizer_fill_fields
3754
+ -------------------------------------------
3755
+  (0.1ms) rollback transaction
3756
+  (0.1ms) begin transaction
3757
+ -----------------------------------------
3758
+ FormalizerTest: test_fill_and_export_html
3759
+ -----------------------------------------
3760
+  (0.1ms) rollback transaction
3761
+  (0.1ms) begin transaction
3762
+ ----------------------------------------
3763
+ FormalizerTest: test_fill_and_export_pdf
3764
+ ----------------------------------------
3765
+  (0.1ms) rollback transaction
3766
+  (0.1ms) begin transaction
3767
+ -------------------------
3768
+ FormalizerTest: test_tags
3769
+ -------------------------
3770
+  (0.1ms) rollback transaction
3771
+  (0.1ms) begin transaction
3772
+ -------------------------------------------
3773
+ FormalizerTest: test_formalizer_fill_fields
3774
+ -------------------------------------------
3775
+  (0.1ms) rollback transaction
3776
+  (0.1ms) begin transaction
3777
+ ----------------------------------------
3778
+ FormalizerTest: test_fill_and_export_pdf
3779
+ ----------------------------------------
3780
+  (0.1ms) rollback transaction
3781
+  (0.1ms) begin transaction
3782
+ -----------------------------------------
3783
+ FormalizerTest: test_fill_and_export_html
3784
+ -----------------------------------------
3785
+  (0.1ms) rollback transaction
3786
+  (0.1ms) begin transaction
3787
+ ---------------------------------------
3788
+ FormalizerConfigTest: test_valid_config
3789
+ ---------------------------------------
3790
+  (0.1ms) rollback transaction
3791
+  (0.1ms) begin transaction
3792
+ -----------------------------------------
3793
+ FormalizerConfigTest: test_invalid_config
3794
+ -----------------------------------------
3795
+  (0.1ms) rollback transaction
3796
+  (0.1ms) begin transaction
3797
+ --------------------------------------------------
3798
+ FormTest: test_form_from_valid_path_but_wrong_html
3799
+ --------------------------------------------------
3800
+  (0.1ms) rollback transaction
3801
+  (0.1ms) begin transaction
3802
+ ----------------------------------
3803
+ FormTest: test_form_invalid_params
3804
+ ----------------------------------
3805
+  (0.1ms) rollback transaction
3806
+  (0.1ms) begin transaction
3807
+ -------------------------------------------
3808
+ FormTest: test_fill_form_with_missing_param
3809
+ -------------------------------------------
3810
+  (0.0ms) rollback transaction
3811
+  (0.1ms) begin transaction
3812
+ --------------------------------------------
3813
+ FormTest: test_form_from_invalid_direct_html
3814
+ --------------------------------------------
3815
+  (0.0ms) rollback transaction
3816
+  (0.1ms) begin transaction
3817
+ ------------------------
3818
+ FormTest: test_fill_form
3819
+ ------------------------
3820
+  (0.0ms) rollback transaction
3821
+  (0.1ms) begin transaction
3822
+ -----------------------------------------------------
3823
+ FormTest: test_fill_form_with_missing_required_fields
3824
+ -----------------------------------------------------
3825
+  (0.1ms) rollback transaction
3826
+  (0.1ms) begin transaction
3827
+ ---------------------------------
3828
+ FormTest: test_new_form_from_path
3829
+ ---------------------------------
3830
+  (0.1ms) rollback transaction
3831
+  (0.1ms) begin transaction
3832
+ -------------------------------------
3833
+ FormTest: test_from_from_invalid_path
3834
+ -------------------------------------
3835
+  (0.1ms) rollback transaction
3836
+  (0.0ms) begin transaction
3837
+ ----------------------------
3838
+ FormTest: test_export_to_pdf
3839
+ ----------------------------
3840
+  (0.2ms) rollback transaction
3841
+  (0.1ms) begin transaction
3842
+ ----------------------------------------
3843
+ FormalizerFormTest: test_add_form_errors
3844
+ ----------------------------------------
3845
+  (0.1ms) rollback transaction
3846
+  (0.1ms) begin transaction
3847
+ --------------------------------------------
3848
+ FormalizerFormFieldTest: test_add_form_field
3849
+ --------------------------------------------
3850
+  (0.1ms) rollback transaction
3851
+  (0.1ms) begin transaction
3852
+ --------------------------
3853
+ UtilsTest: test_file_found
3854
+ --------------------------
3855
+  (0.1ms) rollback transaction
3856
+  (0.1ms) begin transaction
3857
+ ------------------------------
3858
+ UtilsTest: test_file_not_found
3859
+ ------------------------------
3860
+  (0.7ms) rollback transaction
3861
+  (0.1ms) begin transaction
3862
+ ---------------------------------------------
3863
+ FormFieldTest: test_form_field_invalid_params
3864
+ ---------------------------------------------
3865
+  (0.0ms) rollback transaction
3866
+  (0.1ms) begin transaction
3867
+ -------------------------------------------
3868
+ FormFieldTest: test_form_field_valid_params
3869
+ -------------------------------------------
3870
+  (0.1ms) rollback transaction
3871
+  (0.1ms) begin transaction
3872
+ -------------------------------
3873
+ FormFieldTest: test_html_render
3874
+ -------------------------------
3875
+  (0.1ms) rollback transaction
3876
+  (0.1ms) begin transaction
3877
+ ----------------------------------------
3878
+ FormFieldTest: test_set_form_field_value
3879
+ ----------------------------------------
3880
+  (0.1ms) rollback transaction
3881
+  (0.1ms) begin transaction
3882
+ -------------------------------------------
3883
+ FormFieldTest: test_form_field_valid_params
3884
+ -------------------------------------------
3885
+  (0.1ms) rollback transaction
3886
+  (0.1ms) begin transaction
3887
+ ---------------------------------------------
3888
+ FormFieldTest: test_form_field_invalid_params
3889
+ ---------------------------------------------
3890
+  (0.0ms) rollback transaction
3891
+  (0.1ms) begin transaction
3892
+ -------------------------------
3893
+ FormFieldTest: test_html_render
3894
+ -------------------------------
3895
+  (0.0ms) rollback transaction
3896
+  (0.1ms) begin transaction
3897
+ ----------------------------------------
3898
+ FormFieldTest: test_set_form_field_value
3899
+ ----------------------------------------
3900
+  (0.0ms) rollback transaction
3901
+  (0.1ms) begin transaction
3902
+ -------------------------------------
3903
+ FormTest: test_from_from_invalid_path
3904
+ -------------------------------------
3905
+  (0.3ms) rollback transaction
3906
+  (0.1ms) begin transaction
3907
+ ---------------------------------
3908
+ FormTest: test_new_form_from_path
3909
+ ---------------------------------
3910
+  (0.0ms) rollback transaction
3911
+  (0.1ms) begin transaction
3912
+ --------------------------------------------------
3913
+ FormTest: test_form_from_valid_path_but_wrong_html
3914
+ --------------------------------------------------
3915
+  (0.1ms) rollback transaction
3916
+  (0.1ms) begin transaction
3917
+ -----------------------------------------------------
3918
+ FormTest: test_fill_form_with_missing_required_fields
3919
+ -----------------------------------------------------
3920
+  (0.0ms) rollback transaction
3921
+  (0.1ms) begin transaction
3922
+ ----------------------------
3923
+ FormTest: test_export_to_pdf
3924
+ ----------------------------
3925
+  (0.1ms) rollback transaction
3926
+  (0.1ms) begin transaction
3927
+ --------------------------------------------
3928
+ FormTest: test_form_from_invalid_direct_html
3929
+ --------------------------------------------
3930
+  (0.0ms) rollback transaction
3931
+  (0.1ms) begin transaction
3932
+ ----------------------------------
3933
+ FormTest: test_form_invalid_params
3934
+ ----------------------------------
3935
+  (0.1ms) rollback transaction
3936
+  (0.1ms) begin transaction
3937
+ ------------------------
3938
+ FormTest: test_fill_form
3939
+ ------------------------
3940
+  (0.1ms) rollback transaction
3941
+  (0.2ms) begin transaction
3942
+ -------------------------------------------
3943
+ FormTest: test_fill_form_with_missing_param
3944
+ -------------------------------------------
3945
+  (0.1ms) rollback transaction
3946
+  (0.1ms) begin transaction
3947
+ ----------------------------------------
3948
+ FormalizerFormTest: test_add_form_errors
3949
+ ----------------------------------------
3950
+  (0.1ms) rollback transaction
3951
+  (0.1ms) begin transaction
3952
+ -------------------------
3953
+ FormalizerTest: test_tags
3954
+ -------------------------
3955
+  (0.1ms) rollback transaction
3956
+  (0.1ms) begin transaction
3957
+ -------------------------------------------
3958
+ FormalizerTest: test_formalizer_fill_fields
3959
+ -------------------------------------------
3960
+  (0.1ms) rollback transaction
3961
+  (0.1ms) begin transaction
3962
+ ----------------------------------------
3963
+ FormalizerTest: test_fill_and_export_pdf
3964
+ ----------------------------------------
3965
+  (0.1ms) rollback transaction
3966
+  (0.1ms) begin transaction
3967
+ -----------------------------------------
3968
+ FormalizerTest: test_fill_and_export_html
3969
+ -----------------------------------------
3970
+  (0.7ms) rollback transaction
3971
+  (0.1ms) begin transaction
3972
+ --------------------------
3973
+ UtilsTest: test_file_found
3974
+ --------------------------
3975
+  (0.1ms) rollback transaction
3976
+  (0.1ms) begin transaction
3977
+ ------------------------------
3978
+ UtilsTest: test_file_not_found
3979
+ ------------------------------
3980
+  (0.1ms) rollback transaction
3981
+  (0.0ms) begin transaction
3982
+ --------------------------------------------
3983
+ FormalizerFormFieldTest: test_add_form_field
3984
+ --------------------------------------------
3985
+  (0.1ms) rollback transaction
3986
+  (0.1ms) begin transaction
3987
+ -----------------------------------------
3988
+ FormalizerConfigTest: test_invalid_config
3989
+ -----------------------------------------
3990
+  (0.1ms) rollback transaction
3991
+  (0.1ms) begin transaction
3992
+ ---------------------------------------
3993
+ FormalizerConfigTest: test_valid_config
3994
+ ---------------------------------------
3995
+  (0.1ms) rollback transaction
3996
+  (0.1ms) begin transaction
3997
+ --------------------------------------------------
3998
+ FormTest: test_form_from_valid_path_but_wrong_html
3999
+ --------------------------------------------------
4000
+  (0.1ms) rollback transaction
4001
+  (0.1ms) begin transaction
4002
+ -------------------------------------------
4003
+ FormTest: test_fill_form_with_missing_param
4004
+ -------------------------------------------
4005
+  (0.0ms) rollback transaction
4006
+  (0.1ms) begin transaction
4007
+ ------------------------
4008
+ FormTest: test_fill_form
4009
+ ------------------------
4010
+  (0.0ms) rollback transaction
4011
+  (0.1ms) begin transaction
4012
+ ----------------------------
4013
+ FormTest: test_export_to_pdf
4014
+ ----------------------------
4015
+  (0.2ms) rollback transaction
4016
+  (0.1ms) begin transaction
4017
+ --------------------------------------------
4018
+ FormTest: test_form_from_invalid_direct_html
4019
+ --------------------------------------------
4020
+  (0.1ms) rollback transaction
4021
+  (0.1ms) begin transaction
4022
+ -------------------------------------
4023
+ FormTest: test_from_from_invalid_path
4024
+ -------------------------------------
4025
+  (0.1ms) rollback transaction
4026
+  (0.2ms) begin transaction
4027
+ ----------------------------------
4028
+ FormTest: test_form_invalid_params
4029
+ ----------------------------------
4030
+  (0.1ms) rollback transaction
4031
+  (0.1ms) begin transaction
4032
+ -----------------------------------------------------
4033
+ FormTest: test_fill_form_with_missing_required_fields
4034
+ -----------------------------------------------------
4035
+  (0.1ms) rollback transaction
4036
+  (0.1ms) begin transaction
4037
+ ---------------------------------
4038
+ FormTest: test_new_form_from_path
4039
+ ---------------------------------
4040
+  (0.0ms) rollback transaction
4041
+  (0.1ms) begin transaction
4042
+ --------------------------------------------
4043
+ FormalizerFormFieldTest: test_add_form_field
4044
+ --------------------------------------------
4045
+  (0.1ms) rollback transaction
4046
+  (0.1ms) begin transaction
4047
+ --------------------------
4048
+ UtilsTest: test_file_found
4049
+ --------------------------
4050
+  (0.0ms) rollback transaction
4051
+  (0.1ms) begin transaction
4052
+ ------------------------------
4053
+ UtilsTest: test_file_not_found
4054
+ ------------------------------
4055
+  (0.1ms) rollback transaction
4056
+  (0.1ms) begin transaction
4057
+ -------------------------------
4058
+ FormFieldTest: test_html_render
4059
+ -------------------------------
4060
+  (0.1ms) rollback transaction
4061
+  (0.1ms) begin transaction
4062
+ -------------------------------------------
4063
+ FormFieldTest: test_form_field_valid_params
4064
+ -------------------------------------------
4065
+  (0.0ms) rollback transaction
4066
+  (0.0ms) begin transaction
4067
+ ---------------------------------------------
4068
+ FormFieldTest: test_form_field_invalid_params
4069
+ ---------------------------------------------
4070
+  (0.0ms) rollback transaction
4071
+  (0.0ms) begin transaction
4072
+ ----------------------------------------
4073
+ FormFieldTest: test_set_form_field_value
4074
+ ----------------------------------------
4075
+  (0.0ms) rollback transaction
4076
+  (0.1ms) begin transaction
4077
+ -----------------------------------------
4078
+ FormalizerConfigTest: test_invalid_config
4079
+ -----------------------------------------
4080
+  (0.1ms) rollback transaction
4081
+  (0.1ms) begin transaction
4082
+ ---------------------------------------
4083
+ FormalizerConfigTest: test_valid_config
4084
+ ---------------------------------------
4085
+  (0.1ms) rollback transaction
4086
+  (0.0ms) begin transaction
4087
+ ----------------------------------------
4088
+ FormalizerFormTest: test_add_form_errors
4089
+ ----------------------------------------
4090
+  (0.0ms) rollback transaction
4091
+  (0.0ms) begin transaction
4092
+ -------------------------
4093
+ FormalizerTest: test_tags
4094
+ -------------------------
4095
+  (0.1ms) rollback transaction
4096
+  (0.0ms) begin transaction
4097
+ ----------------------------------------
4098
+ FormalizerTest: test_fill_and_export_pdf
4099
+ ----------------------------------------
4100
+  (0.3ms) rollback transaction
4101
+  (0.1ms) begin transaction
4102
+ -------------------------------------------
4103
+ FormalizerTest: test_formalizer_fill_fields
4104
+ -------------------------------------------
4105
+  (0.1ms) rollback transaction
4106
+  (0.1ms) begin transaction
4107
+ -----------------------------------------
4108
+ FormalizerTest: test_fill_and_export_html
4109
+ -----------------------------------------
4110
+  (0.1ms) rollback transaction
4111
+  (0.1ms) begin transaction
4112
+ --------------------------
4113
+ UtilsTest: test_final_path
4114
+ --------------------------
4115
+  (0.1ms) rollback transaction
4116
+  (0.1ms) begin transaction
4117
+ ------------------------------
4118
+ UtilsTest: test_file_not_found
4119
+ ------------------------------
4120
+  (0.0ms) rollback transaction
4121
+  (0.1ms) begin transaction
4122
+ --------------------------
4123
+ UtilsTest: test_file_found
4124
+ --------------------------
4125
+  (0.0ms) rollback transaction
4126
+  (0.0ms) begin transaction
4127
+ -----------------------------------------
4128
+ FormalizerTest: test_fill_and_export_html
4129
+ -----------------------------------------
4130
+  (0.1ms) rollback transaction
4131
+  (0.1ms) begin transaction
4132
+ ----------------------------------------
4133
+ FormalizerTest: test_fill_and_export_pdf
4134
+ ----------------------------------------
4135
+  (0.2ms) rollback transaction
4136
+  (0.2ms) begin transaction
4137
+ -------------------------------------------
4138
+ FormalizerTest: test_formalizer_fill_fields
4139
+ -------------------------------------------
4140
+  (0.1ms) rollback transaction
4141
+  (0.1ms) begin transaction
4142
+ -------------------------
4143
+ FormalizerTest: test_tags
4144
+ -------------------------
4145
+  (0.1ms) rollback transaction
4146
+  (0.1ms) begin transaction
4147
+ ----------------------------------------
4148
+ FormalizerFormTest: test_add_form_errors
4149
+ ----------------------------------------
4150
+  (0.1ms) rollback transaction
4151
+  (0.1ms) begin transaction
4152
+ --------------------------------------------------
4153
+ FormTest: test_form_from_valid_path_but_wrong_html
4154
+ --------------------------------------------------
4155
+  (0.1ms) rollback transaction
4156
+  (0.1ms) begin transaction
4157
+ --------------------------------------------
4158
+ FormTest: test_form_from_invalid_direct_html
4159
+ --------------------------------------------
4160
+  (0.1ms) rollback transaction
4161
+  (0.1ms) begin transaction
4162
+ -------------------------------------
4163
+ FormTest: test_from_from_invalid_path
4164
+ -------------------------------------
4165
+  (0.1ms) rollback transaction
4166
+  (0.1ms) begin transaction
4167
+ ----------------------------
4168
+ FormTest: test_export_to_pdf
4169
+ ----------------------------
4170
+  (0.1ms) rollback transaction
4171
+  (0.1ms) begin transaction
4172
+ ---------------------------------
4173
+ FormTest: test_new_form_from_path
4174
+ ---------------------------------
4175
+  (0.1ms) rollback transaction
4176
+  (0.1ms) begin transaction
4177
+ -------------------------------------------
4178
+ FormTest: test_fill_form_with_missing_param
4179
+ -------------------------------------------
4180
+  (0.1ms) rollback transaction
4181
+  (0.1ms) begin transaction
4182
+ ----------------------------------
4183
+ FormTest: test_form_invalid_params
4184
+ ----------------------------------
4185
+  (0.1ms) rollback transaction
4186
+  (0.1ms) begin transaction
4187
+ ------------------------
4188
+ FormTest: test_fill_form
4189
+ ------------------------
4190
+  (0.1ms) rollback transaction
4191
+  (0.1ms) begin transaction
4192
+ -----------------------------------------------------
4193
+ FormTest: test_fill_form_with_missing_required_fields
4194
+ -----------------------------------------------------
4195
+  (0.5ms) rollback transaction
4196
+  (0.1ms) begin transaction
4197
+ --------------------------------------------
4198
+ FormalizerFormFieldTest: test_add_form_field
4199
+ --------------------------------------------
4200
+  (0.1ms) rollback transaction
4201
+  (0.1ms) begin transaction
4202
+ -----------------------------------------
4203
+ FormalizerConfigTest: test_invalid_config
4204
+ -----------------------------------------
4205
+  (0.1ms) rollback transaction
4206
+  (0.1ms) begin transaction
4207
+ ---------------------------------------
4208
+ FormalizerConfigTest: test_valid_config
4209
+ ---------------------------------------
4210
+  (0.1ms) rollback transaction
4211
+  (0.1ms) begin transaction
4212
+ ---------------------------------------------
4213
+ FormFieldTest: test_form_field_invalid_params
4214
+ ---------------------------------------------
4215
+  (0.2ms) rollback transaction
4216
+  (0.1ms) begin transaction
4217
+ -------------------------------
4218
+ FormFieldTest: test_html_render
4219
+ -------------------------------
4220
+  (0.0ms) rollback transaction
4221
+  (0.1ms) begin transaction
4222
+ -------------------------------------------
4223
+ FormFieldTest: test_form_field_valid_params
4224
+ -------------------------------------------
4225
+  (0.0ms) rollback transaction
4226
+  (0.1ms) begin transaction
4227
+ ----------------------------------------
4228
+ FormFieldTest: test_set_form_field_value
4229
+ ----------------------------------------
4230
+  (0.0ms) rollback transaction
4231
+  (0.1ms) begin transaction
4232
+ ---------------------------------------------
4233
+ FormFieldTest: test_form_field_invalid_params
4234
+ ---------------------------------------------
4235
+  (0.0ms) rollback transaction
4236
+  (0.1ms) begin transaction
4237
+ -------------------------------
4238
+ FormFieldTest: test_html_render
4239
+ -------------------------------
4240
+  (0.0ms) rollback transaction
4241
+  (0.2ms) begin transaction
4242
+ ----------------------------------------
4243
+ FormFieldTest: test_set_form_field_value
4244
+ ----------------------------------------
4245
+  (0.0ms) rollback transaction
4246
+  (0.1ms) begin transaction
4247
+ -------------------------------------------
4248
+ FormFieldTest: test_form_field_valid_params
4249
+ -------------------------------------------
4250
+  (0.0ms) rollback transaction
4251
+  (0.1ms) begin transaction
4252
+ --------------------------------------------
4253
+ FormalizerFormFieldTest: test_add_form_field
4254
+ --------------------------------------------
4255
+  (0.0ms) rollback transaction
4256
+  (0.0ms) begin transaction
4257
+ ----------------------------------------
4258
+ FormalizerFormTest: test_add_form_errors
4259
+ ----------------------------------------
4260
+  (0.0ms) rollback transaction
4261
+  (0.1ms) begin transaction
4262
+ -------------------------
4263
+ FormalizerTest: test_tags
4264
+ -------------------------
4265
+  (0.0ms) rollback transaction
4266
+  (0.1ms) begin transaction
4267
+ ----------------------------------------
4268
+ FormalizerTest: test_fill_and_export_pdf
4269
+ ----------------------------------------
4270
+  (0.2ms) rollback transaction
4271
+  (0.1ms) begin transaction
4272
+ -------------------------------------------
4273
+ FormalizerTest: test_formalizer_fill_fields
4274
+ -------------------------------------------
4275
+  (0.1ms) rollback transaction
4276
+  (0.1ms) begin transaction
4277
+ -----------------------------------------
4278
+ FormalizerTest: test_fill_and_export_html
4279
+ -----------------------------------------
4280
+  (0.1ms) rollback transaction
4281
+  (0.0ms) begin transaction
4282
+ ----------------------------
4283
+ FormTest: test_export_to_pdf
4284
+ ----------------------------
4285
+  (0.2ms) rollback transaction
4286
+  (0.2ms) begin transaction
4287
+ ------------------------
4288
+ FormTest: test_fill_form
4289
+ ------------------------
4290
+  (0.1ms) rollback transaction
4291
+  (0.1ms) begin transaction
4292
+ -------------------------------------------
4293
+ FormTest: test_fill_form_with_missing_param
4294
+ -------------------------------------------
4295
+  (0.0ms) rollback transaction
4296
+  (0.1ms) begin transaction
4297
+ --------------------------------------------
4298
+ FormTest: test_form_from_invalid_direct_html
4299
+ --------------------------------------------
4300
+  (0.1ms) rollback transaction
4301
+  (0.2ms) begin transaction
4302
+ ----------------------------------
4303
+ FormTest: test_form_invalid_params
4304
+ ----------------------------------
4305
+  (0.1ms) rollback transaction
4306
+  (0.1ms) begin transaction
4307
+ -------------------------------------
4308
+ FormTest: test_from_from_invalid_path
4309
+ -------------------------------------
4310
+  (0.1ms) rollback transaction
4311
+  (0.1ms) begin transaction
4312
+ --------------------------------------------------
4313
+ FormTest: test_form_from_valid_path_but_wrong_html
4314
+ --------------------------------------------------
4315
+  (0.1ms) rollback transaction
4316
+  (0.1ms) begin transaction
4317
+ -----------------------------------------------------
4318
+ FormTest: test_fill_form_with_missing_required_fields
4319
+ -----------------------------------------------------
4320
+  (0.0ms) rollback transaction
4321
+  (0.2ms) begin transaction
4322
+ ---------------------------------
4323
+ FormTest: test_new_form_from_path
4324
+ ---------------------------------
4325
+  (0.1ms) rollback transaction
4326
+  (0.1ms) begin transaction
4327
+ ------------------------------
4328
+ UtilsTest: test_file_not_found
4329
+ ------------------------------
4330
+  (0.0ms) rollback transaction
4331
+  (0.1ms) begin transaction
4332
+ --------------------------
4333
+ UtilsTest: test_file_found
4334
+ --------------------------
4335
+  (0.1ms) rollback transaction
4336
+  (0.1ms) begin transaction
4337
+ --------------------------
4338
+ UtilsTest: test_final_path
4339
+ --------------------------
4340
+  (0.1ms) rollback transaction
4341
+  (0.1ms) begin transaction
4342
+ ---------------------------------------
4343
+ FormalizerConfigTest: test_valid_config
4344
+ ---------------------------------------
4345
+  (0.1ms) rollback transaction
4346
+  (0.1ms) begin transaction
4347
+ -----------------------------------------
4348
+ FormalizerConfigTest: test_invalid_config
4349
+ -----------------------------------------
4350
+  (0.2ms) rollback transaction
4351
+  (0.1ms) begin transaction
4352
+ --------------------------------------------------
4353
+ FormTest: test_form_from_valid_path_but_wrong_html
4354
+ --------------------------------------------------
4355
+  (0.2ms) rollback transaction
4356
+  (0.1ms) begin transaction
4357
+ ------------------------
4358
+ FormTest: test_fill_form
4359
+ ------------------------
4360
+  (0.1ms) rollback transaction
4361
+  (0.1ms) begin transaction
4362
+ ----------------------------------
4363
+ FormTest: test_form_invalid_params
4364
+ ----------------------------------
4365
+  (0.0ms) rollback transaction
4366
+  (0.1ms) begin transaction
4367
+ --------------------------------------------
4368
+ FormTest: test_form_from_invalid_direct_html
4369
+ --------------------------------------------
4370
+  (0.1ms) rollback transaction
4371
+  (0.1ms) begin transaction
4372
+ -------------------------------------
4373
+ FormTest: test_from_from_invalid_path
4374
+ -------------------------------------
4375
+  (0.1ms) rollback transaction
4376
+  (0.1ms) begin transaction
4377
+ ---------------------------------
4378
+ FormTest: test_new_form_from_path
4379
+ ---------------------------------
4380
+  (0.1ms) rollback transaction
4381
+  (0.1ms) begin transaction
4382
+ -------------------------------------------
4383
+ FormTest: test_fill_form_with_missing_param
4384
+ -------------------------------------------
4385
+  (0.1ms) rollback transaction
4386
+  (0.1ms) begin transaction
4387
+ -----------------------------------------------------
4388
+ FormTest: test_fill_form_with_missing_required_fields
4389
+ -----------------------------------------------------
4390
+  (0.1ms) rollback transaction
4391
+  (0.1ms) begin transaction
4392
+ ----------------------------
4393
+ FormTest: test_export_to_pdf
4394
+ ----------------------------
4395
+  (0.7ms) rollback transaction
4396
+  (0.1ms) begin transaction
4397
+ --------------------------------------------
4398
+ FormalizerFormFieldTest: test_add_form_field
4399
+ --------------------------------------------
4400
+  (0.2ms) rollback transaction
4401
+  (0.1ms) begin transaction
4402
+ --------------------------
4403
+ UtilsTest: test_file_found
4404
+ --------------------------
4405
+  (0.0ms) rollback transaction
4406
+  (0.1ms) begin transaction
4407
+ --------------------------
4408
+ UtilsTest: test_final_path
4409
+ --------------------------
4410
+  (0.1ms) rollback transaction
4411
+  (0.1ms) begin transaction
4412
+ ------------------------------
4413
+ UtilsTest: test_file_not_found
4414
+ ------------------------------
4415
+  (0.1ms) rollback transaction
4416
+  (0.1ms) begin transaction
4417
+ -----------------------------------------
4418
+ FormalizerConfigTest: test_invalid_config
4419
+ -----------------------------------------
4420
+  (0.1ms) rollback transaction
4421
+  (0.1ms) begin transaction
4422
+ ---------------------------------------
4423
+ FormalizerConfigTest: test_valid_config
4424
+ ---------------------------------------
4425
+  (0.1ms) rollback transaction
4426
+  (0.1ms) begin transaction
4427
+ ----------------------------------------
4428
+ FormalizerFormTest: test_add_form_errors
4429
+ ----------------------------------------
4430
+  (0.1ms) rollback transaction
4431
+  (0.1ms) begin transaction
4432
+ -------------------------------
4433
+ FormFieldTest: test_html_render
4434
+ -------------------------------
4435
+  (0.1ms) rollback transaction
4436
+  (0.1ms) begin transaction
4437
+ ---------------------------------------------
4438
+ FormFieldTest: test_form_field_invalid_params
4439
+ ---------------------------------------------
4440
+  (0.1ms) rollback transaction
4441
+  (0.1ms) begin transaction
4442
+ -------------------------------------------
4443
+ FormFieldTest: test_form_field_valid_params
4444
+ -------------------------------------------
4445
+  (0.1ms) rollback transaction
4446
+  (0.1ms) begin transaction
4447
+ ----------------------------------------
4448
+ FormFieldTest: test_set_form_field_value
4449
+ ----------------------------------------
4450
+  (0.1ms) rollback transaction
4451
+  (0.1ms) begin transaction
4452
+ -------------------------
4453
+ FormalizerTest: test_tags
4454
+ -------------------------
4455
+  (0.1ms) rollback transaction
4456
+  (0.1ms) begin transaction
4457
+ -------------------------------------------
4458
+ FormalizerTest: test_formalizer_fill_fields
4459
+ -------------------------------------------
4460
+  (0.1ms) rollback transaction
4461
+  (0.1ms) begin transaction
4462
+ ----------------------------------------
4463
+ FormalizerTest: test_fill_and_export_pdf
4464
+ ----------------------------------------
4465
+  (0.1ms) rollback transaction
4466
+  (0.1ms) begin transaction
4467
+ -----------------------------------------
4468
+ FormalizerTest: test_fill_and_export_html
4469
+ -----------------------------------------
4470
+  (0.1ms) rollback transaction
4471
+  (0.1ms) begin transaction
4472
+ --------------------------
4473
+ UtilsTest: test_file_found
4474
+ --------------------------
4475
+  (0.1ms) rollback transaction
4476
+  (0.1ms) begin transaction
4477
+ ------------------------------
4478
+ UtilsTest: test_file_not_found
4479
+ ------------------------------
4480
+  (0.0ms) rollback transaction
4481
+  (0.1ms) begin transaction
4482
+ --------------------------
4483
+ UtilsTest: test_final_path
4484
+ --------------------------
4485
+  (0.1ms) rollback transaction
4486
+  (0.0ms) begin transaction
4487
+ -----------------------------------------
4488
+ FormalizerTest: test_fill_and_export_html
4489
+ -----------------------------------------
4490
+  (0.1ms) rollback transaction
4491
+  (0.1ms) begin transaction
4492
+ -------------------------------------------
4493
+ FormalizerTest: test_formalizer_fill_fields
4494
+ -------------------------------------------
4495
+  (0.1ms) rollback transaction
4496
+  (0.1ms) begin transaction
4497
+ -------------------------
4498
+ FormalizerTest: test_tags
4499
+ -------------------------
4500
+  (0.1ms) rollback transaction
4501
+  (0.1ms) begin transaction
4502
+ ----------------------------------------
4503
+ FormalizerTest: test_fill_and_export_pdf
4504
+ ----------------------------------------
4505
+  (0.2ms) rollback transaction
4506
+  (0.3ms) begin transaction
4507
+ ----------------------------------------
4508
+ FormalizerFormTest: test_add_form_errors
4509
+ ----------------------------------------
4510
+  (0.2ms) rollback transaction
4511
+  (0.1ms) begin transaction
4512
+ -------------------------------------
4513
+ FormTest: test_from_from_invalid_path
4514
+ -------------------------------------
4515
+  (0.1ms) rollback transaction
4516
+  (0.1ms) begin transaction
4517
+ -----------------------------------------------------
4518
+ FormTest: test_fill_form_with_missing_required_fields
4519
+ -----------------------------------------------------
4520
+  (0.1ms) rollback transaction
4521
+  (0.1ms) begin transaction
4522
+ ------------------------
4523
+ FormTest: test_fill_form
4524
+ ------------------------
4525
+  (0.1ms) rollback transaction
4526
+  (0.1ms) begin transaction
4527
+ -------------------------------------------
4528
+ FormTest: test_fill_form_with_missing_param
4529
+ -------------------------------------------
4530
+  (0.1ms) rollback transaction
4531
+  (0.1ms) begin transaction
4532
+ ----------------------------
4533
+ FormTest: test_export_to_pdf
4534
+ ----------------------------
4535
+  (0.2ms) rollback transaction
4536
+  (0.1ms) begin transaction
4537
+ --------------------------------------------
4538
+ FormTest: test_form_from_invalid_direct_html
4539
+ --------------------------------------------
4540
+  (0.1ms) rollback transaction
4541
+  (0.1ms) begin transaction
4542
+ --------------------------------------------------
4543
+ FormTest: test_form_from_valid_path_but_wrong_html
4544
+ --------------------------------------------------
4545
+  (0.1ms) rollback transaction
4546
+  (0.1ms) begin transaction
4547
+ ----------------------------------
4548
+ FormTest: test_form_invalid_params
4549
+ ----------------------------------
4550
+  (0.1ms) rollback transaction
4551
+  (0.1ms) begin transaction
4552
+ ---------------------------------
4553
+ FormTest: test_new_form_from_path
4554
+ ---------------------------------
4555
+  (0.1ms) rollback transaction
4556
+  (0.0ms) begin transaction
4557
+ --------------------------------------------
4558
+ FormalizerFormFieldTest: test_add_form_field
4559
+ --------------------------------------------
4560
+  (0.2ms) rollback transaction
4561
+  (0.1ms) begin transaction
4562
+ -------------------------------
4563
+ FormFieldTest: test_html_render
4564
+ -------------------------------
4565
+  (0.1ms) rollback transaction
4566
+  (0.1ms) begin transaction
4567
+ ----------------------------------------
4568
+ FormFieldTest: test_set_form_field_value
4569
+ ----------------------------------------
4570
+  (0.1ms) rollback transaction
4571
+  (0.1ms) begin transaction
4572
+ -------------------------------------------
4573
+ FormFieldTest: test_form_field_valid_params
4574
+ -------------------------------------------
4575
+  (0.1ms) rollback transaction
4576
+  (0.1ms) begin transaction
4577
+ ---------------------------------------------
4578
+ FormFieldTest: test_form_field_invalid_params
4579
+ ---------------------------------------------
4580
+  (0.0ms) rollback transaction
4581
+  (0.1ms) begin transaction
4582
+ -----------------------------------------
4583
+ FormalizerConfigTest: test_invalid_config
4584
+ -----------------------------------------
4585
+  (0.1ms) rollback transaction
4586
+  (0.1ms) begin transaction
4587
+ ---------------------------------------
4588
+ FormalizerConfigTest: test_valid_config
4589
+ ---------------------------------------
4590
+  (0.1ms) rollback transaction
4591
+  (0.2ms) begin transaction
4592
+ ----------------------------------------
4593
+ FormalizerFormTest: test_add_form_errors
4594
+ ----------------------------------------
4595
+  (0.2ms) rollback transaction
4596
+  (0.1ms) begin transaction
4597
+ -------------------------------------------
4598
+ FormalizerTest: test_formalizer_fill_fields
4599
+ -------------------------------------------
4600
+  (0.1ms) rollback transaction
4601
+  (0.1ms) begin transaction
4602
+ -----------------------------------------
4603
+ FormalizerTest: test_fill_and_export_html
4604
+ -----------------------------------------
4605
+  (0.1ms) rollback transaction
4606
+  (0.1ms) begin transaction
4607
+ ----------------------------------------
4608
+ FormalizerTest: test_fill_and_export_pdf
4609
+ ----------------------------------------
4610
+  (0.6ms) rollback transaction
4611
+  (0.2ms) begin transaction
4612
+ -------------------------
4613
+ FormalizerTest: test_tags
4614
+ -------------------------
4615
+  (0.1ms) rollback transaction
4616
+  (0.1ms) begin transaction
4617
+ --------------------------------------------
4618
+ FormalizerFormFieldTest: test_add_form_field
4619
+ --------------------------------------------
4620
+  (0.1ms) rollback transaction
4621
+  (0.1ms) begin transaction
4622
+ --------------------------------------------------
4623
+ FormTest: test_form_from_valid_path_but_wrong_html
4624
+ --------------------------------------------------
4625
+  (0.1ms) rollback transaction
4626
+  (0.1ms) begin transaction
4627
+ ----------------------------------
4628
+ FormTest: test_form_invalid_params
4629
+ ----------------------------------
4630
+  (0.1ms) rollback transaction
4631
+  (0.1ms) begin transaction
4632
+ -------------------------------------------
4633
+ FormTest: test_fill_form_with_missing_param
4634
+ -------------------------------------------
4635
+  (0.0ms) rollback transaction
4636
+  (0.1ms) begin transaction
4637
+ ----------------------------
4638
+ FormTest: test_export_to_pdf
4639
+ ----------------------------
4640
+  (0.2ms) rollback transaction
4641
+  (0.1ms) begin transaction
4642
+ -------------------------------------
4643
+ FormTest: test_from_from_invalid_path
4644
+ -------------------------------------
4645
+  (0.2ms) rollback transaction
4646
+  (0.1ms) begin transaction
4647
+ ---------------------------------
4648
+ FormTest: test_new_form_from_path
4649
+ ---------------------------------
4650
+  (0.1ms) rollback transaction
4651
+  (0.1ms) begin transaction
4652
+ ------------------------
4653
+ FormTest: test_fill_form
4654
+ ------------------------
4655
+  (0.1ms) rollback transaction
4656
+  (0.1ms) begin transaction
4657
+ --------------------------------------------
4658
+ FormTest: test_form_from_invalid_direct_html
4659
+ --------------------------------------------
4660
+  (0.1ms) rollback transaction
4661
+  (0.1ms) begin transaction
4662
+ -----------------------------------------------------
4663
+ FormTest: test_fill_form_with_missing_required_fields
4664
+ -----------------------------------------------------
4665
+  (0.1ms) rollback transaction
4666
+  (0.1ms) begin transaction
4667
+ --------------------------
4668
+ UtilsTest: test_final_path
4669
+ --------------------------
4670
+  (0.1ms) rollback transaction
4671
+  (0.1ms) begin transaction
4672
+ ------------------------------
4673
+ UtilsTest: test_file_not_found
4674
+ ------------------------------
4675
+  (0.0ms) rollback transaction
4676
+  (0.1ms) begin transaction
4677
+ --------------------------
4678
+ UtilsTest: test_file_found
4679
+ --------------------------
4680
+  (0.1ms) rollback transaction
4681
+  (0.1ms) begin transaction
4682
+ -----------------------------------------
4683
+ FormalizerConfigTest: test_invalid_config
4684
+ -----------------------------------------
4685
+  (0.1ms) rollback transaction
4686
+  (0.1ms) begin transaction
4687
+ ---------------------------------------
4688
+ FormalizerConfigTest: test_valid_config
4689
+ ---------------------------------------
4690
+  (0.1ms) rollback transaction
4691
+  (0.1ms) begin transaction
4692
+ ---------------------------------------------
4693
+ FormFieldTest: test_form_field_invalid_params
4694
+ ---------------------------------------------
4695
+  (0.0ms) rollback transaction
4696
+  (0.1ms) begin transaction
4697
+ -------------------------------------------
4698
+ FormFieldTest: test_form_field_valid_params
4699
+ -------------------------------------------
4700
+  (0.1ms) rollback transaction
4701
+  (0.1ms) begin transaction
4702
+ ----------------------------------------
4703
+ FormFieldTest: test_set_form_field_value
4704
+ ----------------------------------------
4705
+  (0.0ms) rollback transaction
4706
+  (0.1ms) begin transaction
4707
+ -------------------------------
4708
+ FormFieldTest: test_html_render
4709
+ -------------------------------
4710
+  (0.1ms) rollback transaction
4711
+  (0.3ms) begin transaction
4712
+ -------------------------------------------
4713
+ FormalizerTest: test_formalizer_fill_fields
4714
+ -------------------------------------------
4715
+  (0.1ms) rollback transaction
4716
+  (0.4ms) begin transaction
4717
+ ----------------------------------------
4718
+ FormalizerTest: test_fill_and_export_pdf
4719
+ ----------------------------------------
4720
+  (0.3ms) rollback transaction
4721
+  (0.1ms) begin transaction
4722
+ -----------------------------------------
4723
+ FormalizerTest: test_fill_and_export_html
4724
+ -----------------------------------------
4725
+  (0.1ms) rollback transaction
4726
+  (0.1ms) begin transaction
4727
+ -------------------------
4728
+ FormalizerTest: test_tags
4729
+ -------------------------
4730
+  (0.1ms) rollback transaction
4731
+  (0.1ms) begin transaction
4732
+ ---------------------------------------------
4733
+ FormFieldTest: test_form_field_invalid_params
4734
+ ---------------------------------------------
4735
+  (0.1ms) rollback transaction
4736
+  (0.1ms) begin transaction
4737
+ ----------------------------------------
4738
+ FormFieldTest: test_set_form_field_value
4739
+ ----------------------------------------
4740
+  (0.0ms) rollback transaction
4741
+  (0.1ms) begin transaction
4742
+ -------------------------------------------
4743
+ FormFieldTest: test_form_field_valid_params
4744
+ -------------------------------------------
4745
+  (0.1ms) rollback transaction
4746
+  (0.1ms) begin transaction
4747
+ -------------------------------
4748
+ FormFieldTest: test_html_render
4749
+ -------------------------------
4750
+  (0.1ms) rollback transaction
4751
+  (0.1ms) begin transaction
4752
+ ----------------------------------------
4753
+ FormalizerFormTest: test_add_form_errors
4754
+ ----------------------------------------
4755
+  (0.1ms) rollback transaction
4756
+  (0.0ms) begin transaction
4757
+ -----------------------------------------
4758
+ FormalizerConfigTest: test_invalid_config
4759
+ -----------------------------------------
4760
+  (0.1ms) rollback transaction
4761
+  (0.1ms) begin transaction
4762
+ ---------------------------------------
4763
+ FormalizerConfigTest: test_valid_config
4764
+ ---------------------------------------
4765
+  (0.1ms) rollback transaction
4766
+  (0.0ms) begin transaction
4767
+ ----------------------------
4768
+ FormTest: test_export_to_pdf
4769
+ ----------------------------
4770
+  (0.2ms) rollback transaction
4771
+  (0.1ms) begin transaction
4772
+ --------------------------------------------------
4773
+ FormTest: test_form_from_valid_path_but_wrong_html
4774
+ --------------------------------------------------
4775
+  (0.1ms) rollback transaction
4776
+  (0.1ms) begin transaction
4777
+ --------------------------------------------
4778
+ FormTest: test_form_from_invalid_direct_html
4779
+ --------------------------------------------
4780
+  (0.1ms) rollback transaction
4781
+  (0.1ms) begin transaction
4782
+ ------------------------
4783
+ FormTest: test_fill_form
4784
+ ------------------------
4785
+  (0.1ms) rollback transaction
4786
+  (0.1ms) begin transaction
4787
+ -------------------------------------
4788
+ FormTest: test_from_from_invalid_path
4789
+ -------------------------------------
4790
+  (0.1ms) rollback transaction
4791
+  (0.1ms) begin transaction
4792
+ -----------------------------------------------------
4793
+ FormTest: test_fill_form_with_missing_required_fields
4794
+ -----------------------------------------------------
4795
+  (0.0ms) rollback transaction
4796
+  (0.1ms) begin transaction
4797
+ ----------------------------------
4798
+ FormTest: test_form_invalid_params
4799
+ ----------------------------------
4800
+  (0.1ms) rollback transaction
4801
+  (0.1ms) begin transaction
4802
+ -------------------------------------------
4803
+ FormTest: test_fill_form_with_missing_param
4804
+ -------------------------------------------
4805
+  (0.1ms) rollback transaction
4806
+  (0.1ms) begin transaction
4807
+ ---------------------------------
4808
+ FormTest: test_new_form_from_path
4809
+ ---------------------------------
4810
+  (1.5ms) rollback transaction
4811
+  (0.1ms) begin transaction
4812
+ --------------------------------------------
4813
+ FormalizerFormFieldTest: test_add_form_field
4814
+ --------------------------------------------
4815
+  (0.1ms) rollback transaction
4816
+  (0.1ms) begin transaction
4817
+ --------------------------
4818
+ UtilsTest: test_file_found
4819
+ --------------------------
4820
+  (0.0ms) rollback transaction
4821
+  (0.1ms) begin transaction
4822
+ ------------------------------
4823
+ UtilsTest: test_file_not_found
4824
+ ------------------------------
4825
+  (0.0ms) rollback transaction
4826
+  (0.1ms) begin transaction
4827
+ --------------------------
4828
+ UtilsTest: test_final_path
4829
+ --------------------------
4830
+  (0.0ms) rollback transaction