bs-helper 0.1.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 (451) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +22 -0
  3. data/README.md +46 -0
  4. data/Rakefile +14 -0
  5. data/app/assets/javascripts/bs-modal/bootstrap-modal.js +379 -0
  6. data/app/assets/javascripts/bs-modal/bootstrap-modalmanager.js +422 -0
  7. data/app/assets/javascripts/init-bootbox.js +254 -0
  8. data/app/assets/javascripts/init-bshelper.js +11 -0
  9. data/app/assets/stylesheets/bs-modal/bootstrap-modal-bs3patch.css +35 -0
  10. data/app/assets/stylesheets/bs-modal/bootstrap-modal.css +214 -0
  11. data/app/helpers/bootstrap_base_helper.rb +145 -0
  12. data/app/helpers/bootstrap_button_helper.rb +135 -0
  13. data/app/helpers/bootstrap_component_helper.rb +358 -0
  14. data/app/helpers/bootstrap_helper.rb +24 -0
  15. data/app/helpers/bootstrap_notify_helper.rb +49 -0
  16. data/app/helpers/bootstrap_post_paginate_helper.rb +62 -0
  17. data/app/helpers/bootstrap_tab_helper.rb +124 -0
  18. data/app/helpers/bootstrap_table_helper.rb +341 -0
  19. data/lib/bs-helper.rb +8 -0
  20. data/lib/bs-helper/engine.rb +21 -0
  21. data/lib/bs-helper/version.rb +5 -0
  22. data/lib/generators/bshelper/install/install_generator.rb +46 -0
  23. data/test/dummy/README.rdoc +261 -0
  24. data/test/dummy/Rakefile +7 -0
  25. data/test/dummy/app/assets/images/favicon.ico +0 -0
  26. data/test/dummy/app/assets/images/rar_gold.png +0 -0
  27. data/test/dummy/app/assets/images/text_page.png +0 -0
  28. data/test/dummy/app/assets/javascripts/application.js +22 -0
  29. data/test/dummy/app/assets/javascripts/components.js +2 -0
  30. data/test/dummy/app/assets/javascripts/paginations.js +2 -0
  31. data/test/dummy/app/assets/javascripts/prettify.js +376 -0
  32. data/test/dummy/app/assets/stylesheets/application.css.scss +163 -0
  33. data/test/dummy/app/assets/stylesheets/components.css.scss +3 -0
  34. data/test/dummy/app/assets/stylesheets/paginations.css.scss +3 -0
  35. data/test/dummy/app/assets/stylesheets/prettify.css +55 -0
  36. data/test/dummy/app/controllers/application_controller.rb +3 -0
  37. data/test/dummy/app/controllers/components_controller.rb +9 -0
  38. data/test/dummy/app/controllers/home_controller.rb +4 -0
  39. data/test/dummy/app/controllers/paginations_controller.rb +5 -0
  40. data/test/dummy/app/helpers/application_helper.rb +2 -0
  41. data/test/dummy/app/helpers/components_helper.rb +2 -0
  42. data/test/dummy/app/helpers/paginations_helper.rb +2 -0
  43. data/test/dummy/app/models/order.rb +2 -0
  44. data/test/dummy/app/views/components/_bootbox.html.erb +30 -0
  45. data/test/dummy/app/views/components/_button.html.erb +145 -0
  46. data/test/dummy/app/views/components/_flash.html.erb +44 -0
  47. data/test/dummy/app/views/components/_image.html.erb +66 -0
  48. data/test/dummy/app/views/components/_list.html.erb +162 -0
  49. data/test/dummy/app/views/components/_modal.html.erb +263 -0
  50. data/test/dummy/app/views/components/_navbar.html.erb +36 -0
  51. data/test/dummy/app/views/components/_notify.html.erb +30 -0
  52. data/test/dummy/app/views/components/_progressbar.html.erb +42 -0
  53. data/test/dummy/app/views/components/_tab.html.erb +134 -0
  54. data/test/dummy/app/views/components/_table.html.erb +244 -0
  55. data/test/dummy/app/views/components/_thumbnails.html.erb +71 -0
  56. data/test/dummy/app/views/components/_typographic.html.erb +133 -0
  57. data/test/dummy/app/views/components/index.html.erb +128 -0
  58. data/test/dummy/app/views/components/update.html.erb +2 -0
  59. data/test/dummy/app/views/home/index.html.erb +12 -0
  60. data/test/dummy/app/views/layouts/application.html.erb +79 -0
  61. data/test/dummy/app/views/paginations/index.html.erb +45 -0
  62. data/test/dummy/bin/bundle +3 -0
  63. data/test/dummy/bin/rails +4 -0
  64. data/test/dummy/bin/rake +4 -0
  65. data/test/dummy/config.ru +4 -0
  66. data/test/dummy/config/application.rb +17 -0
  67. data/test/dummy/config/boot.rb +10 -0
  68. data/test/dummy/config/database.yml +27 -0
  69. data/test/dummy/config/environment.rb +5 -0
  70. data/test/dummy/config/environments/development.rb +28 -0
  71. data/test/dummy/config/environments/production.rb +80 -0
  72. data/test/dummy/config/environments/test.rb +36 -0
  73. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  74. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  75. data/test/dummy/config/initializers/inflections.rb +15 -0
  76. data/test/dummy/config/initializers/mime_types.rb +5 -0
  77. data/test/dummy/config/initializers/secret_token.rb +7 -0
  78. data/test/dummy/config/initializers/session_store.rb +8 -0
  79. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  80. data/test/dummy/config/locales/en.bootstrap.yml +18 -0
  81. data/test/dummy/config/locales/en.yml +5 -0
  82. data/test/dummy/config/routes.rb +8 -0
  83. data/test/dummy/db/development.sqlite3 +0 -0
  84. data/test/dummy/db/migrate/20131006012048_create_orders.rb +12 -0
  85. data/test/dummy/db/schema.rb +25 -0
  86. data/test/dummy/db/seeds.rb +3 -0
  87. data/test/dummy/db/test.sqlite3 +0 -0
  88. data/test/dummy/log/development.log +6445 -0
  89. data/test/dummy/log/test.log +3020 -0
  90. data/test/dummy/public/404.html +26 -0
  91. data/test/dummy/public/422.html +26 -0
  92. data/test/dummy/public/500.html +25 -0
  93. data/test/dummy/public/favicon.ico +0 -0
  94. data/test/dummy/tmp/cache/assets/BB7/B00/sprockets%2F255015c35d7237c7582051420593d535 +0 -0
  95. data/test/dummy/tmp/cache/assets/BFE/E90/sprockets%2F46051149c05424080ec21b4b160b2156 +0 -0
  96. data/test/dummy/tmp/cache/assets/C00/C70/sprockets%2F2042815e30a1a59041392a5ca5440290 +0 -0
  97. data/test/dummy/tmp/cache/assets/C14/150/sprockets%2Fb119a0eb512432ef7314727958150651 +0 -0
  98. data/test/dummy/tmp/cache/assets/C1B/A20/sprockets%2F418d652b582b3203c7654d337047c338 +0 -0
  99. data/test/dummy/tmp/cache/assets/C29/8A0/sprockets%2Fa899e19256a0845205636938010c6fe5 +0 -0
  100. data/test/dummy/tmp/cache/assets/C2A/C00/sprockets%2F3506a8282568971d3248601e5e5425ff +0 -0
  101. data/test/dummy/tmp/cache/assets/C4B/EF0/sprockets%2F131d29c56765d2433266063045fba4f8 +0 -0
  102. data/test/dummy/tmp/cache/assets/C52/380/sprockets%2Fc39dc5164502475828be3d207521847e +0 -0
  103. data/test/dummy/tmp/cache/assets/C5D/BA0/sprockets%2F3012b77e6950a5219d79e44061789fc7 +0 -0
  104. data/test/dummy/tmp/cache/assets/C66/980/sprockets%2F08834498e0872d20578ff783e2f406b7 +0 -0
  105. data/test/dummy/tmp/cache/assets/C6F/FE0/sprockets%2F5cce6081788d09120c598c7279f82888 +0 -0
  106. data/test/dummy/tmp/cache/assets/C70/2B0/sprockets%2F5463710e10c56c02c6b5755029280bfc +0 -0
  107. data/test/dummy/tmp/cache/assets/C73/E40/sprockets%2F5b82d31405900db244371901fc76e0f6 +0 -0
  108. data/test/dummy/tmp/cache/assets/C75/980/sprockets%2F2404708d3ebd336e5416726433b29c3a +0 -0
  109. data/test/dummy/tmp/cache/assets/C7A/A60/sprockets%2F8ed6a1437c208c22d819801375df2270 +0 -0
  110. data/test/dummy/tmp/cache/assets/C7F/250/sprockets%2F0d48d83101ec82689352144842cde29a +0 -0
  111. data/test/dummy/tmp/cache/assets/C80/840/sprockets%2F562c2d168da585f80579347d10790a0a +0 -0
  112. data/test/dummy/tmp/cache/assets/CA4/D30/sprockets%2F755264e416b5a070875ee90af0242cc0 +0 -0
  113. data/test/dummy/tmp/cache/assets/CA5/8D0/sprockets%2F2555a348ba314a08c0f6d85b066129a9 +0 -0
  114. data/test/dummy/tmp/cache/assets/CA8/330/sprockets%2F46c9ed7b190224e086e20ca6382465a1 +0 -0
  115. data/test/dummy/tmp/cache/assets/CAA/430/sprockets%2F54687e09b19575b8930eb3887e698ee8 +0 -0
  116. data/test/dummy/tmp/cache/assets/CAF/640/sprockets%2F2803327062d607ade5813f79bb61df74 +0 -0
  117. data/test/dummy/tmp/cache/assets/CB4/8E0/sprockets%2F00d59d696cc7efe4234258e306b83333 +0 -0
  118. data/test/dummy/tmp/cache/assets/CBF/370/sprockets%2F49ceca075582477f96382fa1c26b4846 +0 -0
  119. data/test/dummy/tmp/cache/assets/CC5/160/sprockets%2F74b7c3a59a0e88f9502866d0f9b49059 +0 -0
  120. data/test/dummy/tmp/cache/assets/CCF/730/sprockets%2F884d37d65980884f89898cbb009ba60d +0 -0
  121. data/test/dummy/tmp/cache/assets/CD2/320/sprockets%2F06f36e5565a415bc3f15b9a0438b204e +0 -0
  122. data/test/dummy/tmp/cache/assets/CD5/2C0/sprockets%2F166c056119ebdfb8b7104c97b424b423 +0 -0
  123. data/test/dummy/tmp/cache/assets/CD5/740/sprockets%2Fbb5277f1364450372ea69e473b0cb0e3 +0 -0
  124. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  125. data/test/dummy/tmp/cache/assets/CD8/810/sprockets%2Ffd61035950d2b33670fb8d3f4271fc15 +0 -0
  126. data/test/dummy/tmp/cache/assets/CD8/D90/sprockets%2Fc1f515271621dfef6c3941c1e210e587 +0 -0
  127. data/test/dummy/tmp/cache/assets/CDA/BD0/sprockets%2F549431bf0eb194b790b4060759fb1b8a +0 -0
  128. data/test/dummy/tmp/cache/assets/CDB/1D0/sprockets%2Fe0be664785a1118d4bf4b7110f6f0846 +0 -0
  129. data/test/dummy/tmp/cache/assets/CDB/970/sprockets%2F08f5b4a540db21d6b735be28047e3569 +0 -0
  130. data/test/dummy/tmp/cache/assets/CE1/310/sprockets%2F5a5d222a2e5345211e7969d3e860cd9e +0 -0
  131. data/test/dummy/tmp/cache/assets/CE1/3C0/sprockets%2Fcdd01087f3928656a4dd8c33d82641c3 +0 -0
  132. data/test/dummy/tmp/cache/assets/CE1/B90/sprockets%2F72230396f68b08a199d9a24ba9d2c9a0 +0 -0
  133. data/test/dummy/tmp/cache/assets/CE3/820/sprockets%2Fb760f2c7efb9312b9571a9a576854a30 +0 -0
  134. data/test/dummy/tmp/cache/assets/CE3/CC0/sprockets%2Ff9608666245b5b6f3de33b212d4e509d +0 -0
  135. data/test/dummy/tmp/cache/assets/CE7/310/sprockets%2F8b0357db2336e0598cb9e5810e199a7b +0 -0
  136. data/test/dummy/tmp/cache/assets/CE7/FD0/sprockets%2Fbb3a33894c855494dfe294248325a0ef +0 -0
  137. data/test/dummy/tmp/cache/assets/CE8/5F0/sprockets%2Fe313d803410c99bf15d6344fb77f578d +0 -0
  138. data/test/dummy/tmp/cache/assets/CEF/DA0/sprockets%2F5a60769c6b6e9d2926c7c558d98001bd +0 -0
  139. data/test/dummy/tmp/cache/assets/CF2/0A0/sprockets%2F2f5152f528c4f0586e490cbe978e26c8 +0 -0
  140. data/test/dummy/tmp/cache/assets/CF2/CB0/sprockets%2F47142f1e39d3ed8004649bc2968eee79 +0 -0
  141. data/test/dummy/tmp/cache/assets/CF3/640/sprockets%2F48de748d4590940ac2981d18ff216cf9 +0 -0
  142. data/test/dummy/tmp/cache/assets/CF4/1C0/sprockets%2Ff708449e989289d9d02b35ada290e18d +0 -0
  143. data/test/dummy/tmp/cache/assets/CF6/100/sprockets%2F53efd93222c0011cae70c56d34251df1 +0 -0
  144. data/test/dummy/tmp/cache/assets/CF6/BA0/sprockets%2F2999139a7870f72c257f820bc9f62cee +0 -0
  145. data/test/dummy/tmp/cache/assets/CF7/670/sprockets%2F86bb8f349783ee1007567e607c89dbc6 +0 -0
  146. data/test/dummy/tmp/cache/assets/CFB/C30/sprockets%2F0d44a6a2a55f865ac64b1ce4620b5036 +0 -0
  147. data/test/dummy/tmp/cache/assets/CFC/FD0/sprockets%2F5ea4bbab196a7829893dd7769374894c +0 -0
  148. data/test/dummy/tmp/cache/assets/CFD/010/sprockets%2Fd12aa1062f6c713a9efe86ab12263291 +0 -0
  149. data/test/dummy/tmp/cache/assets/D05/5F0/sprockets%2Fb44400c4299cbe671ffc09b1f1570d24 +0 -0
  150. data/test/dummy/tmp/cache/assets/D0B/760/sprockets%2F9e9498b160e9fb55d0ee0202a06d74a1 +0 -0
  151. data/test/dummy/tmp/cache/assets/D0C/DB0/sprockets%2Fcf235e0d96662a1376d2dda257d6f422 +0 -0
  152. data/test/dummy/tmp/cache/assets/D0E/F80/sprockets%2F8c2b061e379a23e7c4d207adcf992462 +0 -0
  153. data/test/dummy/tmp/cache/assets/D0F/220/sprockets%2F763a8623c9f9ca1da82ce1d3065195b4 +0 -0
  154. data/test/dummy/tmp/cache/assets/D10/220/sprockets%2F726f6657c33b6aa3c0d94af63411cc98 +0 -0
  155. data/test/dummy/tmp/cache/assets/D10/5A0/sprockets%2Fd2231fd71dfa3e6303aefa6662449597 +0 -0
  156. data/test/dummy/tmp/cache/assets/D10/BD0/sprockets%2F651f97e9f10e46d0b60870a29da1dd45 +0 -0
  157. data/test/dummy/tmp/cache/assets/D11/790/sprockets%2Fe9dd4830f03e40a2d643677026c7f8bd +0 -0
  158. data/test/dummy/tmp/cache/assets/D12/920/sprockets%2Ffcb404030b30e1a73c604ef0a41a721a +0 -0
  159. data/test/dummy/tmp/cache/assets/D17/4C0/sprockets%2F700827acd727b6fc8361f454c68a5cd7 +0 -0
  160. data/test/dummy/tmp/cache/assets/D17/AA0/sprockets%2Fb207b91eda797ba69e6e407427c9810d +0 -0
  161. data/test/dummy/tmp/cache/assets/D1A/C80/sprockets%2Fd05d17ace6d56d848f78eab067509821 +0 -0
  162. data/test/dummy/tmp/cache/assets/D1C/9D0/sprockets%2F73ff5a1b61c01067bb59f6fd89b54894 +0 -0
  163. data/test/dummy/tmp/cache/assets/D1D/A80/sprockets%2F587d710a85a815aa3d67a7496f59dcb6 +0 -0
  164. data/test/dummy/tmp/cache/assets/D1D/B00/sprockets%2Fc658105ac7b6fe7b9cc4656176259a9b +0 -0
  165. data/test/dummy/tmp/cache/assets/D23/CA0/sprockets%2F10af5eba24474e2fa3c15510681a60eb +0 -0
  166. data/test/dummy/tmp/cache/assets/D28/7A0/sprockets%2Fc0016b98f89c7f17cdd78b81fc194893 +0 -0
  167. data/test/dummy/tmp/cache/assets/D29/700/sprockets%2Fe6f667affe510637b6289bf664d73c94 +0 -0
  168. data/test/dummy/tmp/cache/assets/D29/7F0/sprockets%2F1814abebb27ea13dd682b39514d4221c +0 -0
  169. data/test/dummy/tmp/cache/assets/D2A/4D0/sprockets%2F93b2a67747d68990b77f7e2f4bb186ed +0 -0
  170. data/test/dummy/tmp/cache/assets/D2A/5F0/sprockets%2F444f8aab7211e90259e2a1e21afd050f +0 -0
  171. data/test/dummy/tmp/cache/assets/D2A/6D0/sprockets%2F56b0fec7ef32b116b33f6279131ac0c0 +0 -0
  172. data/test/dummy/tmp/cache/assets/D2B/0A0/sprockets%2Fcf0f777766ec93937f4950fb7eb450c7 +0 -0
  173. data/test/dummy/tmp/cache/assets/D2D/D50/sprockets%2Fd585a06e2ee6203ccb04c8b84150d14d +0 -0
  174. data/test/dummy/tmp/cache/assets/D30/050/sprockets%2F010cfbc0fe93ced742452b382b2f6137 +0 -0
  175. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  176. data/test/dummy/tmp/cache/assets/D34/AF0/sprockets%2Ff9c3010efc1c070a7b965d5cf2e28440 +0 -0
  177. data/test/dummy/tmp/cache/assets/D37/910/sprockets%2F6d03353931352e58ead27bafa2b7e18d +0 -0
  178. data/test/dummy/tmp/cache/assets/D38/1F0/sprockets%2F3e51a308496425c44eddbd4831bd4a6e +0 -0
  179. data/test/dummy/tmp/cache/assets/D39/AC0/sprockets%2F374af92b8212b4bcb11df742483af93f +0 -0
  180. data/test/dummy/tmp/cache/assets/D3A/8F0/sprockets%2F286081105fc0bce1bb5e58d9437df6d1 +0 -0
  181. data/test/dummy/tmp/cache/assets/D3B/BA0/sprockets%2Fe6806877af3cba66407e110c72b4ddf2 +0 -0
  182. data/test/dummy/tmp/cache/assets/D3C/9A0/sprockets%2F0bfd8955817f68630d3c10eb1ca26d7b +0 -0
  183. data/test/dummy/tmp/cache/assets/D3D/210/sprockets%2F89af64f22b01d10b7759a29d4303ffcf +0 -0
  184. data/test/dummy/tmp/cache/assets/D3E/3F0/sprockets%2Fca760aeeff18c1f769100174c5f337d5 +0 -0
  185. data/test/dummy/tmp/cache/assets/D40/C40/sprockets%2Fe1e3f7030b8f90aa626ec8e640717d6e +0 -0
  186. data/test/dummy/tmp/cache/assets/D41/2F0/sprockets%2F95dccfb2296b7ba175585f06ea212e29 +0 -0
  187. data/test/dummy/tmp/cache/assets/D43/200/sprockets%2Faffca5ff9de508520551e380a948d136 +0 -0
  188. data/test/dummy/tmp/cache/assets/D46/1E0/sprockets%2F578ca1351d466b2a7f7681b90cfa9ee4 +0 -0
  189. data/test/dummy/tmp/cache/assets/D47/840/sprockets%2F619da8dda7f51281494c293bdd19e44d +0 -0
  190. data/test/dummy/tmp/cache/assets/D4B/110/sprockets%2Fbff37793c148d27d084ccc25c7e6d095 +0 -0
  191. data/test/dummy/tmp/cache/assets/D4B/120/sprockets%2F9851478267eda328424a664becdeaec8 +0 -0
  192. data/test/dummy/tmp/cache/assets/D4B/A40/sprockets%2Fea319dc44a8e75d8b4090ea37e35d977 +0 -0
  193. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  194. data/test/dummy/tmp/cache/assets/D50/870/sprockets%2Fd2bb3bfae89cf939627795942a30ef44 +0 -0
  195. data/test/dummy/tmp/cache/assets/D50/A50/sprockets%2F584ed79d21d49036c19ef6aa39ef39e1 +0 -0
  196. data/test/dummy/tmp/cache/assets/D50/DF0/sprockets%2F99e091c7908d7fca33de747cb53c535e +0 -0
  197. data/test/dummy/tmp/cache/assets/D53/080/sprockets%2F610ad73170cc39dc8d69a9e7f814fe89 +0 -0
  198. data/test/dummy/tmp/cache/assets/D55/A60/sprockets%2F7d2d3f238b17eb6b6a0149c230a2d0da +0 -0
  199. data/test/dummy/tmp/cache/assets/D58/630/sprockets%2F6e31211feb3b021ab13d59d6afa5e393 +0 -0
  200. data/test/dummy/tmp/cache/assets/D59/BD0/sprockets%2F8a2b501d930665d6c10ce2d52c5bccc3 +0 -0
  201. data/test/dummy/tmp/cache/assets/D5A/5A0/sprockets%2Ffb68b1e33aca410ae15c1e4a69b60087 +0 -0
  202. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  203. data/test/dummy/tmp/cache/assets/D5D/B60/sprockets%2F1d2b9d33eeac89cbaf405770a309203a +0 -0
  204. data/test/dummy/tmp/cache/assets/D62/FD0/sprockets%2F4e33cbf3c3ee86c3103de60d1534ce63 +0 -0
  205. data/test/dummy/tmp/cache/assets/D64/5C0/sprockets%2F7fdd0381b23dbf9ad6fed5532b044161 +0 -0
  206. data/test/dummy/tmp/cache/assets/D66/A50/sprockets%2Fa19d3c63b5c8d302b27d40bff9ac0694 +0 -0
  207. data/test/dummy/tmp/cache/assets/D67/4C0/sprockets%2F2acdba0f2819e272fd2775c1e2e135f6 +0 -0
  208. data/test/dummy/tmp/cache/assets/D69/8B0/sprockets%2F6165e3199da62d88d3cda04e9f0bab03 +0 -0
  209. data/test/dummy/tmp/cache/assets/D69/BC0/sprockets%2Fb4b3aa35e039b27b8e060c45f9775cbd +0 -0
  210. data/test/dummy/tmp/cache/assets/D6E/430/sprockets%2F4f91b073b921ebf764afe6b65e9c400b +0 -0
  211. data/test/dummy/tmp/cache/assets/D70/B20/sprockets%2Fe1b78bcabcbb629a3b7491f646e47444 +0 -0
  212. data/test/dummy/tmp/cache/assets/D71/610/sprockets%2F7f5938c3933df260b3c1d3ca966aba7d +0 -0
  213. data/test/dummy/tmp/cache/assets/D72/890/sprockets%2F1964d5b7e91e4bd75eaaa90372179abe +0 -0
  214. data/test/dummy/tmp/cache/assets/D72/F70/sprockets%2Ffc8249455de6cf6c7ee332c3da50b651 +0 -0
  215. data/test/dummy/tmp/cache/assets/D75/2E0/sprockets%2F8b14921da19c834965bfceae1f7653eb +0 -0
  216. data/test/dummy/tmp/cache/assets/D75/7C0/sprockets%2Fa6bd7e7accd75862c41df7761f20484c +0 -0
  217. data/test/dummy/tmp/cache/assets/D78/420/sprockets%2F1d8aadb52328eb71c38f6f6789541aef +0 -0
  218. data/test/dummy/tmp/cache/assets/D78/E40/sprockets%2Faedc95237ba36c670c945f38c90eff06 +0 -0
  219. data/test/dummy/tmp/cache/assets/D7B/0D0/sprockets%2F551a784b818d6b4b49c0c8f8b4fdf7a4 +0 -0
  220. data/test/dummy/tmp/cache/assets/D7B/BC0/sprockets%2F60689caf6e6b35ddfef5020e38cd6682 +0 -0
  221. data/test/dummy/tmp/cache/assets/D8B/080/sprockets%2F9acde0d230391c71d10e44b0bbfab788 +0 -0
  222. data/test/dummy/tmp/cache/assets/D91/1F0/sprockets%2F9d59f6d0a4e6c39d5df4967d495dae77 +0 -0
  223. data/test/dummy/tmp/cache/assets/D93/710/sprockets%2F4b23ca13b12ffd5b869d852dbd4517ab +0 -0
  224. data/test/dummy/tmp/cache/assets/D98/820/sprockets%2F9e134dbd90cdb62020573b5efa598cbc +0 -0
  225. data/test/dummy/tmp/cache/assets/D99/2B0/sprockets%2F6f461bec4036b94e05def91bcef2f212 +0 -0
  226. data/test/dummy/tmp/cache/assets/D9B/6D0/sprockets%2F233d91946fb5eec30dfb91d13645acbf +0 -0
  227. data/test/dummy/tmp/cache/assets/D9B/BC0/sprockets%2F972cc0f426f8a9a1502aac8008df9dbf +0 -0
  228. data/test/dummy/tmp/cache/assets/D9F/240/sprockets%2Fcbcc9415e68ada75302721596fff2beb +0 -0
  229. data/test/dummy/tmp/cache/assets/DA0/300/sprockets%2Fb0662d0bd4d1de35ee5275c9eb777f4a +0 -0
  230. data/test/dummy/tmp/cache/assets/DA0/A00/sprockets%2F470e7e6e53ac8e2d8b8cc67cc0ed4150 +0 -0
  231. data/test/dummy/tmp/cache/assets/DA2/9F0/sprockets%2F32e07f1e2ace5083e8d82fe128c9ce7b +0 -0
  232. data/test/dummy/tmp/cache/assets/DA3/130/sprockets%2F564d6aad8eed946ff1c02e46374ce61a +0 -0
  233. data/test/dummy/tmp/cache/assets/DA4/560/sprockets%2F2088bf8c4ce3fc99f1ca81b5daa30588 +0 -0
  234. data/test/dummy/tmp/cache/assets/DA6/C80/sprockets%2Ffb3fbf878626cb0b193398e604efdda1 +0 -0
  235. data/test/dummy/tmp/cache/assets/DAE/2F0/sprockets%2Fd1af60de6575897dbc5f714ecc8bc781 +0 -0
  236. data/test/dummy/tmp/cache/assets/DB0/8E0/sprockets%2Fa7e3c53c5e6be4829feaf8593d0cc739 +0 -0
  237. data/test/dummy/tmp/cache/assets/DB2/8C0/sprockets%2Fee6f626db3884fac4f4f534c594d58cb +0 -0
  238. data/test/dummy/tmp/cache/assets/DB3/FE0/sprockets%2Ff44f9fa62c88d3d8e1df6a9c770d5a73 +0 -0
  239. data/test/dummy/tmp/cache/assets/DB7/6A0/sprockets%2Fe62279cb658efbd4ee59afa72a4967f5 +0 -0
  240. data/test/dummy/tmp/cache/assets/DBD/170/sprockets%2Fd17e4102f6f24fcacccd2e3be411f670 +0 -0
  241. data/test/dummy/tmp/cache/assets/DC1/350/sprockets%2F462d90cc0af07b51cf4d9280bc96bdaa +0 -0
  242. data/test/dummy/tmp/cache/assets/DC2/1E0/sprockets%2Ffaebe1250f51bbc6ed1cd059807ea653 +0 -0
  243. data/test/dummy/tmp/cache/assets/DC5/510/sprockets%2F4a670eb7532fb1e85bb9f00de445bfba +0 -0
  244. data/test/dummy/tmp/cache/assets/DCA/3F0/sprockets%2F0413c8f1d459a08ebcfc047fa3d59dbe +0 -0
  245. data/test/dummy/tmp/cache/assets/DD4/BF0/sprockets%2F74d6a551a492207cbe7ef9a8b4d6fdea +0 -0
  246. data/test/dummy/tmp/cache/assets/DDB/A80/sprockets%2F1b4568e9df68ba3beab8a093e6c487ed +0 -0
  247. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  248. data/test/dummy/tmp/cache/assets/DEA/6E0/sprockets%2Fea1fee1a4d51c17c3ca11ba896d8d20d +0 -0
  249. data/test/dummy/tmp/cache/assets/DEB/5C0/sprockets%2Fb5511bfe77b3e107e3fdcb20e6ba3f3a +0 -0
  250. data/test/dummy/tmp/cache/assets/DEE/2F0/sprockets%2F84a9fb3ac3f8c95f1bdc9e58ff79b648 +0 -0
  251. data/test/dummy/tmp/cache/assets/DF2/1C0/sprockets%2F3d3c6b606ac3f25bd883a15cc50dcfde +0 -0
  252. data/test/dummy/tmp/cache/assets/DF6/C30/sprockets%2F094cbbee3c8ae3a10a6351b3f879edbe +0 -0
  253. data/test/dummy/tmp/cache/assets/DF9/680/sprockets%2Feb943eab7c94dbb2ff5d4baf180a2825 +0 -0
  254. data/test/dummy/tmp/cache/assets/DF9/BF0/sprockets%2Facce48e27f31adf4ce5d7261eb0d634e +0 -0
  255. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  256. data/test/dummy/tmp/cache/assets/E30/F30/sprockets%2F2de6682f4a2f69a08c6bbafef6beb13f +0 -0
  257. data/test/dummy/tmp/cache/assets/E34/4E0/sprockets%2Fdfeb62c5bdee854323f83d507eca9ddc +0 -0
  258. data/test/dummy/tmp/cache/assets/E36/600/sprockets%2Fd3efa814e1719cd5ccd9e3f295deba9a +0 -0
  259. data/test/dummy/tmp/cache/assets/E37/AD0/sprockets%2Fffa65557afebb980751c8fed3cccc91a +0 -0
  260. data/test/dummy/tmp/cache/assets/E3A/330/sprockets%2F738a1f7a1b37d9a4edcdb685a9cdfe9c +0 -0
  261. data/test/dummy/tmp/cache/assets/E58/410/sprockets%2F1ffe555dcee543ffc25dc45c0fca2fc0 +0 -0
  262. data/test/dummy/tmp/cache/assets/E5D/A40/sprockets%2F6cfde019cc3feaf0a90cefaa6b39e494 +0 -0
  263. data/test/dummy/tmp/cache/assets/E79/EE0/sprockets%2Fba0bcc8fbaea1603d9e2e98cdab20af4 +0 -0
  264. data/test/dummy/tmp/cache/assets/development/sass/28736f96a991e275b6732cb50220e8c11ba4494b/application.css.scssc +0 -0
  265. data/test/dummy/tmp/cache/assets/development/sass/28736f96a991e275b6732cb50220e8c11ba4494b/components.css.scssc +0 -0
  266. data/test/dummy/tmp/cache/assets/development/sass/28736f96a991e275b6732cb50220e8c11ba4494b/paginations.css.scssc +0 -0
  267. data/test/dummy/tmp/cache/assets/development/sass/95877ca3fb97306427e6a8c3200a77fa726c2979/bootstrap-responsive.scssc +0 -0
  268. data/test/dummy/tmp/cache/assets/development/sass/95877ca3fb97306427e6a8c3200a77fa726c2979/bootstrap.scssc +0 -0
  269. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_accordion.scssc +0 -0
  270. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_alerts.scssc +0 -0
  271. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_breadcrumbs.scssc +0 -0
  272. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_button-groups.scssc +0 -0
  273. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_buttons.scssc +0 -0
  274. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_carousel.scssc +0 -0
  275. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_close.scssc +0 -0
  276. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_code.scssc +0 -0
  277. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_component-animations.scssc +0 -0
  278. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_dropdowns.scssc +0 -0
  279. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_forms.scssc +0 -0
  280. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_grid.scssc +0 -0
  281. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_hero-unit.scssc +0 -0
  282. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_labels-badges.scssc +0 -0
  283. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_layouts.scssc +0 -0
  284. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_media.scssc +0 -0
  285. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_mixins.scssc +0 -0
  286. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_modals.scssc +0 -0
  287. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_navbar.scssc +0 -0
  288. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_navs.scssc +0 -0
  289. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_pager.scssc +0 -0
  290. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_pagination.scssc +0 -0
  291. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_popovers.scssc +0 -0
  292. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_progress-bars.scssc +0 -0
  293. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_reset.scssc +0 -0
  294. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_responsive-1200px-min.scssc +0 -0
  295. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_responsive-767px-max.scssc +0 -0
  296. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_responsive-768px-979px.scssc +0 -0
  297. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_responsive-navbar.scssc +0 -0
  298. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_responsive-utilities.scssc +0 -0
  299. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_scaffolding.scssc +0 -0
  300. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_sprites.scssc +0 -0
  301. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_tables.scssc +0 -0
  302. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_thumbnails.scssc +0 -0
  303. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_tooltip.scssc +0 -0
  304. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_type.scssc +0 -0
  305. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_utilities.scssc +0 -0
  306. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_variables.scssc +0 -0
  307. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/_wells.scssc +0 -0
  308. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/bootstrap.scssc +0 -0
  309. data/test/dummy/tmp/cache/assets/development/sass/c75ed21fe4fe5a931216dc17f876dea4e6c936a7/responsive.scssc +0 -0
  310. data/test/dummy/tmp/cache/assets/development/sprockets/00171108bd75279e653c1ffb5b4650b8 +0 -0
  311. data/test/dummy/tmp/cache/assets/development/sprockets/02a5e97b270aecc19e04af22f1f1cd30 +0 -0
  312. data/test/dummy/tmp/cache/assets/development/sprockets/04184a8816ea3777ee27b854203f6019 +0 -0
  313. data/test/dummy/tmp/cache/assets/development/sprockets/048bae76f95c4ffc9b7af4e6c2785962 +0 -0
  314. data/test/dummy/tmp/cache/assets/development/sprockets/05029f2e1c68338ac88af8005acab3ca +0 -0
  315. data/test/dummy/tmp/cache/assets/development/sprockets/08318fdb5f5b783c22442a6aeb73730e +0 -0
  316. data/test/dummy/tmp/cache/assets/development/sprockets/08f00d4a1bac197d382c2269a184f9e4 +0 -0
  317. data/test/dummy/tmp/cache/assets/development/sprockets/0b6c06f6bcf535567c19f70f7aa5144d +0 -0
  318. data/test/dummy/tmp/cache/assets/development/sprockets/0b9076b70e22dd7976e589018cdf65ca +0 -0
  319. data/test/dummy/tmp/cache/assets/development/sprockets/0e8461b429e0249b8dc74d457fcc17d3 +0 -0
  320. data/test/dummy/tmp/cache/assets/development/sprockets/0f074c0ea10680a3ba979bbd1d2ff756 +0 -0
  321. data/test/dummy/tmp/cache/assets/development/sprockets/0f246c1ee41a544d79fbfe7e4c55395a +0 -0
  322. data/test/dummy/tmp/cache/assets/development/sprockets/0f5877c1fb159c1a5f1602569a0cdde2 +0 -0
  323. data/test/dummy/tmp/cache/assets/development/sprockets/114347d906f6bbc62846207e29d557ea +0 -0
  324. data/test/dummy/tmp/cache/assets/development/sprockets/15963a31c483fd420068248735916590 +0 -0
  325. data/test/dummy/tmp/cache/assets/development/sprockets/16039dc737e753516f4399dcd38d6de7 +0 -0
  326. data/test/dummy/tmp/cache/assets/development/sprockets/17343be9bd7b90029b2d0ba85cc272a6 +0 -0
  327. data/test/dummy/tmp/cache/assets/development/sprockets/22110de5943f742c8678358b15f96778 +0 -0
  328. data/test/dummy/tmp/cache/assets/development/sprockets/2475b7ccd67f97ce69957334b916f93e +0 -0
  329. data/test/dummy/tmp/cache/assets/development/sprockets/264e074302048cb000f909f2919a0c9a +0 -0
  330. data/test/dummy/tmp/cache/assets/development/sprockets/272f5096d49f011351e9f4780c313741 +0 -0
  331. data/test/dummy/tmp/cache/assets/development/sprockets/27a29069244dbf376d0988a1d36240ee +0 -0
  332. data/test/dummy/tmp/cache/assets/development/sprockets/29c2f0fd8e3c5f4dcd1332efa4a0371d +0 -0
  333. data/test/dummy/tmp/cache/assets/development/sprockets/2a2a275912bc287c9d7a3a311488e28c +0 -0
  334. data/test/dummy/tmp/cache/assets/development/sprockets/2a61f06ae5cf5f6f1d43645b9b219453 +0 -0
  335. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  336. data/test/dummy/tmp/cache/assets/development/sprockets/32ef1c9e94a83350bad5e887c416c5b6 +0 -0
  337. data/test/dummy/tmp/cache/assets/development/sprockets/367865b241c60ef0e9a85c9f9910f7d4 +0 -0
  338. data/test/dummy/tmp/cache/assets/development/sprockets/37984c7de5e7d22002a378234035e51c +0 -0
  339. data/test/dummy/tmp/cache/assets/development/sprockets/40f725c6fe77af21a3d7c750a30b4d72 +0 -0
  340. data/test/dummy/tmp/cache/assets/development/sprockets/4201264f7710f91dc1c389a2497eda7d +0 -0
  341. data/test/dummy/tmp/cache/assets/development/sprockets/4632953f64dffdb8589b67c260f76a80 +0 -0
  342. data/test/dummy/tmp/cache/assets/development/sprockets/46a877b33fea5e34d8af620fa68516f6 +0 -0
  343. data/test/dummy/tmp/cache/assets/development/sprockets/4783fc0456df015fe93e64130dd123c9 +0 -0
  344. data/test/dummy/tmp/cache/assets/development/sprockets/4790af1cc9b3545ffd8c1ad8615c8461 +0 -0
  345. data/test/dummy/tmp/cache/assets/development/sprockets/4e81b6b6eb1e1462b1eea2caee6bfcc6 +0 -0
  346. data/test/dummy/tmp/cache/assets/development/sprockets/518c73ecd762cbf6d85a3ae693e08d01 +0 -0
  347. data/test/dummy/tmp/cache/assets/development/sprockets/536039d2b9042f61449290e282854f4d +0 -0
  348. data/test/dummy/tmp/cache/assets/development/sprockets/54cc1257b927751b13f0369969e17440 +0 -0
  349. data/test/dummy/tmp/cache/assets/development/sprockets/563bd386568f5c565af0f5e77d1465b6 +0 -0
  350. data/test/dummy/tmp/cache/assets/development/sprockets/56401bbafd08927b55572c8ef7e88883 +0 -0
  351. data/test/dummy/tmp/cache/assets/development/sprockets/58548b7df7a227fd1bf04f0c6dfccf36 +0 -0
  352. data/test/dummy/tmp/cache/assets/development/sprockets/5865993e4fa54b7f6f0186ebaffff12b +0 -0
  353. data/test/dummy/tmp/cache/assets/development/sprockets/5f206472cf6bcde2e61740cb5386efe6 +0 -0
  354. data/test/dummy/tmp/cache/assets/development/sprockets/5f4079f15430a7602518336faeccf957 +0 -0
  355. data/test/dummy/tmp/cache/assets/development/sprockets/5f62321f43b55988b6cb95367556d822 +0 -0
  356. data/test/dummy/tmp/cache/assets/development/sprockets/653178c2e0c5d134069e58196f7bf28e +0 -0
  357. data/test/dummy/tmp/cache/assets/development/sprockets/661c74f15a009d482fdad85f811e6f8e +0 -0
  358. data/test/dummy/tmp/cache/assets/development/sprockets/6645261a77362094829edc9269130cf4 +0 -0
  359. data/test/dummy/tmp/cache/assets/development/sprockets/6668d3ee30c1513097c95bcc0a27696a +0 -0
  360. data/test/dummy/tmp/cache/assets/development/sprockets/698c4f478493aa93e94a2c32cdd5f1cc +0 -0
  361. data/test/dummy/tmp/cache/assets/development/sprockets/69c3968e244ecbe63dba17e07301aa68 +0 -0
  362. data/test/dummy/tmp/cache/assets/development/sprockets/6a859ca0860b6b2173eaea6c1abd630a +0 -0
  363. data/test/dummy/tmp/cache/assets/development/sprockets/6a98434027a1ee08391a7294b1aa7a67 +0 -0
  364. data/test/dummy/tmp/cache/assets/development/sprockets/6ba848548341f31a12f3af01e5bcb01e +0 -0
  365. data/test/dummy/tmp/cache/assets/development/sprockets/700827acd727b6fc8361f454c68a5cd7 +0 -0
  366. data/test/dummy/tmp/cache/assets/development/sprockets/715840f8887bc1e70ef3cc18b429cbc8 +0 -0
  367. data/test/dummy/tmp/cache/assets/development/sprockets/754b02ea2ed1c85b7756de6452f4aeb7 +0 -0
  368. data/test/dummy/tmp/cache/assets/development/sprockets/779fd39741d5f4364f4453e6d9db3a8c +0 -0
  369. data/test/dummy/tmp/cache/assets/development/sprockets/789ee96fc4d6c86c29c7859b5a5fb64e +0 -0
  370. data/test/dummy/tmp/cache/assets/development/sprockets/78fdc1d9add39ed3fdcbf7cae3df4190 +0 -0
  371. data/test/dummy/tmp/cache/assets/development/sprockets/7b2d3e5e25b0901f78fbf8c9cb9570c4 +0 -0
  372. data/test/dummy/tmp/cache/assets/development/sprockets/7d3e001df1afe33a8b5380b294997051 +0 -0
  373. data/test/dummy/tmp/cache/assets/development/sprockets/7ee9049cecde358160bb72854ce9981e +0 -0
  374. data/test/dummy/tmp/cache/assets/development/sprockets/805a755d6887dd3f251ee8d671113a55 +0 -0
  375. data/test/dummy/tmp/cache/assets/development/sprockets/833fa0f8ca6eda2934d5875796ac0ddb +0 -0
  376. data/test/dummy/tmp/cache/assets/development/sprockets/84eb79ed8e43cf9414e6ecfd38c5a19f +0 -0
  377. data/test/dummy/tmp/cache/assets/development/sprockets/87a55c890eedab0cc5d1e3f2c2b2da4b +0 -0
  378. data/test/dummy/tmp/cache/assets/development/sprockets/87efe66475e2e502b42c392ff8273442 +0 -0
  379. data/test/dummy/tmp/cache/assets/development/sprockets/8ab512c9b33ac90e699b73469d71f061 +0 -0
  380. data/test/dummy/tmp/cache/assets/development/sprockets/8bd5ee2e9abbe312a72a1cec2ea714a7 +0 -0
  381. data/test/dummy/tmp/cache/assets/development/sprockets/8cc360b254f1bff91753f954e7591a9b +0 -0
  382. data/test/dummy/tmp/cache/assets/development/sprockets/8cef39f720d3603419826280adad9372 +0 -0
  383. data/test/dummy/tmp/cache/assets/development/sprockets/8d55d8baa9ba44e3a712be2608138977 +0 -0
  384. data/test/dummy/tmp/cache/assets/development/sprockets/8ec990d84f5dedd35001397078415137 +0 -0
  385. data/test/dummy/tmp/cache/assets/development/sprockets/94e46c0e76c8f392586af76b0f6c6e93 +0 -0
  386. data/test/dummy/tmp/cache/assets/development/sprockets/959e668443f5574a25645a9cb54649f5 +0 -0
  387. data/test/dummy/tmp/cache/assets/development/sprockets/968566581a35be861fa4f8fed757dcae +0 -0
  388. data/test/dummy/tmp/cache/assets/development/sprockets/98f1b84ebd547f6cd07a548569b3e1ae +0 -0
  389. data/test/dummy/tmp/cache/assets/development/sprockets/9b51a99e821d1802733dceac6764d18f +0 -0
  390. data/test/dummy/tmp/cache/assets/development/sprockets/9e6dd98de3da516019c66e5cea7aaa7f +0 -0
  391. data/test/dummy/tmp/cache/assets/development/sprockets/a0a671e624f03533a82b1ec899bf3b21 +0 -0
  392. data/test/dummy/tmp/cache/assets/development/sprockets/a0f669003bef02490064a16cfdb916fe +0 -0
  393. data/test/dummy/tmp/cache/assets/development/sprockets/a5b779be5a68643653ca723bce23c62c +0 -0
  394. data/test/dummy/tmp/cache/assets/development/sprockets/a71be32ef78d975a6d1d5e32143d05ee +0 -0
  395. data/test/dummy/tmp/cache/assets/development/sprockets/a899e19256a0845205636938010c6fe5 +0 -0
  396. data/test/dummy/tmp/cache/assets/development/sprockets/a927b1e06ff9451df692de08dca0e08f +0 -0
  397. data/test/dummy/tmp/cache/assets/development/sprockets/a97cd428904e5968d05f7d3a5fd50f85 +0 -0
  398. data/test/dummy/tmp/cache/assets/development/sprockets/aa87366fe7cd02f1be035665580cf066 +0 -0
  399. data/test/dummy/tmp/cache/assets/development/sprockets/ad1e6aa474266554a6dd880d462f633e +0 -0
  400. data/test/dummy/tmp/cache/assets/development/sprockets/af5ab48d2f371513fb609f8bdec3ac42 +0 -0
  401. data/test/dummy/tmp/cache/assets/development/sprockets/b0f49e3da03027c5e6d62ed7a5f49a43 +0 -0
  402. data/test/dummy/tmp/cache/assets/development/sprockets/b51a3679ccee92d6e374deac3359cc69 +0 -0
  403. data/test/dummy/tmp/cache/assets/development/sprockets/b58136bb390cf7c8bb94be5d819a0480 +0 -0
  404. data/test/dummy/tmp/cache/assets/development/sprockets/b7f56c6511e2ad0e7534e6f578b9070d +0 -0
  405. data/test/dummy/tmp/cache/assets/development/sprockets/ba8d058dd931d04837d9f0cf2a0ad5aa +0 -0
  406. data/test/dummy/tmp/cache/assets/development/sprockets/baed877d386dc374496dcd62af36bc5b +0 -0
  407. data/test/dummy/tmp/cache/assets/development/sprockets/bcca522c6302f184f12fe0e8a7d7e71a +0 -0
  408. data/test/dummy/tmp/cache/assets/development/sprockets/c09bd2cb81885f4b03d7c53a3d85fdb1 +0 -0
  409. data/test/dummy/tmp/cache/assets/development/sprockets/c13fc73ceafa45876a901b3e775b83ae +0 -0
  410. data/test/dummy/tmp/cache/assets/development/sprockets/c3ca63a68d9a17cf1beb8e708ffbd3ca +0 -0
  411. data/test/dummy/tmp/cache/assets/development/sprockets/c61c40e35c6ac853de21fd169c1c82b9 +0 -0
  412. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  413. data/test/dummy/tmp/cache/assets/development/sprockets/d4c36568a5145e04bfbbefd37fecdde7 +0 -0
  414. data/test/dummy/tmp/cache/assets/development/sprockets/d75dd624db3682fd4fed243c5f6f2e69 +0 -0
  415. data/test/dummy/tmp/cache/assets/development/sprockets/d9fa58e1385bfb03f2ede65c90f36d70 +0 -0
  416. data/test/dummy/tmp/cache/assets/development/sprockets/db6179f67e9b6827b5870d2c1b6ccd3d +0 -0
  417. data/test/dummy/tmp/cache/assets/development/sprockets/de77caafdd411db4363036050ebbcbc9 +0 -0
  418. data/test/dummy/tmp/cache/assets/development/sprockets/e00413c4a11f1d7ee89901fd0cde57ec +0 -0
  419. data/test/dummy/tmp/cache/assets/development/sprockets/e0b0b28cfa788f3dd5e1608b17d49d40 +0 -0
  420. data/test/dummy/tmp/cache/assets/development/sprockets/e1eaf02d2c8b06a52fc43dd67875cf47 +0 -0
  421. data/test/dummy/tmp/cache/assets/development/sprockets/e256294192259b5603b8dc971d9d6a11 +0 -0
  422. data/test/dummy/tmp/cache/assets/development/sprockets/e6df0f40358bfc2568038d9cf71859a5 +0 -0
  423. data/test/dummy/tmp/cache/assets/development/sprockets/e7e85a25f51035ffdd3f6a0aa5ae9365 +0 -0
  424. data/test/dummy/tmp/cache/assets/development/sprockets/e9526b43370458899ac7c192f651ec8b +0 -0
  425. data/test/dummy/tmp/cache/assets/development/sprockets/edefa48dfc6b66b08d68e6438d1344b4 +0 -0
  426. data/test/dummy/tmp/cache/assets/development/sprockets/f54e09def1ebda9d30f2c9e507c4cfed +0 -0
  427. data/test/dummy/tmp/cache/assets/development/sprockets/f55c8dc7137551c5fff69d2c179ea900 +0 -0
  428. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  429. data/test/dummy/tmp/cache/assets/development/sprockets/fde3d3c8658f07dd5aef16cc104c05c9 +0 -0
  430. data/test/dummy/tmp/cache/assets/development/sprockets/feb5e7071e30ce243a861932e21945b1 +0 -0
  431. data/test/dummy/tmp/cache/sass/027d3fbe01791eb6107c6a3ad3a9a18ef7806de0/fcbklistselection.scssc +0 -0
  432. data/test/dummy/tmp/cache/sass/476f0290d8684ee445559257946d9bfbba0a7490/bootstrap-base.scssc +0 -0
  433. data/test/dummy/tmp/cache/sass/476f0290d8684ee445559257946d9bfbba0a7490/bootstrap-comp.scssc +0 -0
  434. data/test/dummy/tmp/cache/sass/476f0290d8684ee445559257946d9bfbba0a7490/bootstrap-form.scssc +0 -0
  435. data/test/dummy/tmp/cache/sass/476f0290d8684ee445559257946d9bfbba0a7490/bootstrap-media.scssc +0 -0
  436. data/test/dummy/tmp/cache/sass/476f0290d8684ee445559257946d9bfbba0a7490/bootstrap-mixin.scssc +0 -0
  437. data/test/dummy/tmp/cache/sass/476f0290d8684ee445559257946d9bfbba0a7490/bootstrap-table.scssc +0 -0
  438. data/test/dummy/tmp/cache/sass/7962b5625c147f225692330aa36a6e4a877e2e52/fcbklistselection.scssc +0 -0
  439. data/test/dummy/tmp/cache/sass/e4850d758e9663c32ffb065821c1e8a49db1e755/bootstrap-base.scssc +0 -0
  440. data/test/dummy/tmp/cache/sass/e4850d758e9663c32ffb065821c1e8a49db1e755/bootstrap-comp.scssc +0 -0
  441. data/test/dummy/tmp/cache/sass/e4850d758e9663c32ffb065821c1e8a49db1e755/bootstrap-form.scssc +0 -0
  442. data/test/dummy/tmp/cache/sass/e4850d758e9663c32ffb065821c1e8a49db1e755/bootstrap-media.scssc +0 -0
  443. data/test/dummy/tmp/cache/sass/e4850d758e9663c32ffb065821c1e8a49db1e755/bootstrap-mixin.scssc +0 -0
  444. data/test/dummy/tmp/cache/sass/e4850d758e9663c32ffb065821c1e8a49db1e755/bootstrap-table.scssc +0 -0
  445. data/test/test_helper.rb +15 -0
  446. data/test/unit/helpers/bootstrap_base_helper_test.rb +47 -0
  447. data/test/unit/helpers/bootstrap_button_helper_test.rb +56 -0
  448. data/test/unit/helpers/bootstrap_component_helper_test.rb +130 -0
  449. data/test/unit/helpers/bootstrap_notify_helper_test.rb +10 -0
  450. data/test/unit/helpers/bootstrap_tab_helper_test.rb +27 -0
  451. metadata +1021 -0
@@ -0,0 +1,3020 @@
1
+  (0.4ms) begin transaction
2
+ -----------------------------------------
3
+ BootstrapBaseHelperTest: test_c_image_tag
4
+ -----------------------------------------
5
+  (0.1ms) rollback transaction
6
+  (0.1ms) begin transaction
7
+ ----------------------------------------
8
+ BootstrapBaseHelperTest: test_glyph_icon
9
+ ----------------------------------------
10
+  (0.1ms) rollback transaction
11
+  (0.1ms) begin transaction
12
+ ----------------------------------
13
+ BootstrapBaseHelperTest: test_list
14
+ ----------------------------------
15
+  (0.1ms) rollback transaction
16
+  (0.1ms) begin transaction
17
+ -----------------------------------------
18
+ BootstrapBaseHelperTest: test_p_image_tag
19
+ -----------------------------------------
20
+  (0.1ms) rollback transaction
21
+  (0.1ms) begin transaction
22
+ -----------------------------------------
23
+ BootstrapBaseHelperTest: test_r_image_tag
24
+ -----------------------------------------
25
+  (0.1ms) rollback transaction
26
+  (0.1ms) begin transaction
27
+ ---------------------------------
28
+ BootstrapButtonHelperTest: test_a
29
+ ---------------------------------
30
+  (0.1ms) rollback transaction
31
+  (0.1ms) begin transaction
32
+ --------------------------------------
33
+ BootstrapButtonHelperTest: test_button
34
+ --------------------------------------
35
+  (0.1ms) rollback transaction
36
+  (0.1ms) begin transaction
37
+ -----------------------------------------------
38
+ BootstrapButtonHelperTest: test_disabled_button
39
+ -----------------------------------------------
40
+  (0.1ms) rollback transaction
41
+  (0.1ms) begin transaction
42
+ --------------------------------------
43
+ BootstrapButtonHelperTest: test_submit
44
+ --------------------------------------
45
+  (0.1ms) rollback transaction
46
+  (0.1ms) begin transaction
47
+ ----------------------------------------
48
+ BootstrapComponentHelperTest: test_modal
49
+ ----------------------------------------
50
+  (0.1ms) rollback transaction
51
+  (0.1ms) begin transaction
52
+ ------------------------------------------------
53
+ BootstrapComponentHelperTest: test_modal_trigger
54
+ ------------------------------------------------
55
+  (0.1ms) rollback transaction
56
+  (0.1ms) begin transaction
57
+ -----------------------------------------------------
58
+ BootstrapComponentHelperTest: test_modal_with_trigger
59
+ -----------------------------------------------------
60
+  (0.1ms) rollback transaction
61
+  (0.1ms) begin transaction
62
+ --------------------------------------
63
+ BootstrapNotifyHelperTest: test_notify
64
+ --------------------------------------
65
+  (0.1ms) rollback transaction
66
+  (0.1ms) begin transaction
67
+ --------------------------------
68
+ BootstrapTabHelperTest: test_tab
69
+ --------------------------------
70
+  (0.1ms) rollback transaction
71
+  (0.1ms) begin transaction
72
+ ------------------------------------
73
+ BootstrapTableHelperTest: test_table
74
+ ------------------------------------
75
+  (0.1ms) rollback transaction
76
+  (0.6ms) begin transaction
77
+ -----------------------------------------
78
+ BootstrapBaseHelperTest: test_c_image_tag
79
+ -----------------------------------------
80
+  (0.1ms) rollback transaction
81
+  (0.1ms) begin transaction
82
+ ----------------------------------------
83
+ BootstrapBaseHelperTest: test_glyph_icon
84
+ ----------------------------------------
85
+  (0.1ms) rollback transaction
86
+  (0.1ms) begin transaction
87
+ ----------------------------------
88
+ BootstrapBaseHelperTest: test_list
89
+ ----------------------------------
90
+  (0.1ms) rollback transaction
91
+  (0.1ms) begin transaction
92
+ -----------------------------------------
93
+ BootstrapBaseHelperTest: test_p_image_tag
94
+ -----------------------------------------
95
+  (0.1ms) rollback transaction
96
+  (0.1ms) begin transaction
97
+ -----------------------------------------
98
+ BootstrapBaseHelperTest: test_r_image_tag
99
+ -----------------------------------------
100
+  (0.1ms) rollback transaction
101
+  (0.1ms) begin transaction
102
+ ---------------------------------
103
+ BootstrapButtonHelperTest: test_a
104
+ ---------------------------------
105
+  (0.1ms) rollback transaction
106
+  (0.1ms) begin transaction
107
+ --------------------------------------
108
+ BootstrapButtonHelperTest: test_button
109
+ --------------------------------------
110
+  (0.1ms) rollback transaction
111
+  (0.1ms) begin transaction
112
+ -----------------------------------------------
113
+ BootstrapButtonHelperTest: test_disabled_button
114
+ -----------------------------------------------
115
+  (0.1ms) rollback transaction
116
+  (0.1ms) begin transaction
117
+ --------------------------------------
118
+ BootstrapButtonHelperTest: test_submit
119
+ --------------------------------------
120
+  (0.1ms) rollback transaction
121
+  (0.1ms) begin transaction
122
+ -----------------------------------------------
123
+ BootstrapComponentHelperTest: test_button_group
124
+ -----------------------------------------------
125
+  (0.1ms) rollback transaction
126
+  (0.1ms) begin transaction
127
+ ----------------------------------------
128
+ BootstrapComponentHelperTest: test_modal
129
+ ----------------------------------------
130
+  (0.4ms) rollback transaction
131
+  (0.1ms) begin transaction
132
+ ------------------------------------------------
133
+ BootstrapComponentHelperTest: test_modal_trigger
134
+ ------------------------------------------------
135
+  (0.1ms) rollback transaction
136
+  (0.1ms) begin transaction
137
+ -----------------------------------------------------
138
+ BootstrapComponentHelperTest: test_modal_with_trigger
139
+ -----------------------------------------------------
140
+  (0.1ms) rollback transaction
141
+  (0.1ms) begin transaction
142
+ --------------------------------------
143
+ BootstrapNotifyHelperTest: test_notify
144
+ --------------------------------------
145
+  (0.1ms) rollback transaction
146
+  (0.1ms) begin transaction
147
+ --------------------------------
148
+ BootstrapTabHelperTest: test_tab
149
+ --------------------------------
150
+  (0.1ms) rollback transaction
151
+  (0.1ms) begin transaction
152
+ ------------------------------------
153
+ BootstrapTableHelperTest: test_table
154
+ ------------------------------------
155
+  (0.1ms) rollback transaction
156
+  (0.7ms) begin transaction
157
+ -----------------------------------------
158
+ BootstrapBaseHelperTest: test_c_image_tag
159
+ -----------------------------------------
160
+  (0.1ms) rollback transaction
161
+  (0.1ms) begin transaction
162
+ ----------------------------------------
163
+ BootstrapBaseHelperTest: test_glyph_icon
164
+ ----------------------------------------
165
+  (0.1ms) rollback transaction
166
+  (0.1ms) begin transaction
167
+ ----------------------------------
168
+ BootstrapBaseHelperTest: test_list
169
+ ----------------------------------
170
+  (0.1ms) rollback transaction
171
+  (0.1ms) begin transaction
172
+ -----------------------------------------
173
+ BootstrapBaseHelperTest: test_p_image_tag
174
+ -----------------------------------------
175
+  (0.1ms) rollback transaction
176
+  (0.1ms) begin transaction
177
+ -----------------------------------------
178
+ BootstrapBaseHelperTest: test_r_image_tag
179
+ -----------------------------------------
180
+  (0.1ms) rollback transaction
181
+  (0.1ms) begin transaction
182
+ ---------------------------------
183
+ BootstrapButtonHelperTest: test_a
184
+ ---------------------------------
185
+  (0.2ms) rollback transaction
186
+  (0.1ms) begin transaction
187
+ --------------------------------------
188
+ BootstrapButtonHelperTest: test_button
189
+ --------------------------------------
190
+  (0.1ms) rollback transaction
191
+  (0.1ms) begin transaction
192
+ -----------------------------------------------
193
+ BootstrapButtonHelperTest: test_disabled_button
194
+ -----------------------------------------------
195
+  (0.1ms) rollback transaction
196
+  (0.1ms) begin transaction
197
+ --------------------------------------
198
+ BootstrapButtonHelperTest: test_submit
199
+ --------------------------------------
200
+  (0.1ms) rollback transaction
201
+  (0.1ms) begin transaction
202
+ -----------------------------------------------
203
+ BootstrapComponentHelperTest: test_button_group
204
+ -----------------------------------------------
205
+  (0.1ms) rollback transaction
206
+  (0.1ms) begin transaction
207
+ ----------------------------------------
208
+ BootstrapComponentHelperTest: test_modal
209
+ ----------------------------------------
210
+  (0.1ms) rollback transaction
211
+  (0.1ms) begin transaction
212
+ ------------------------------------------------
213
+ BootstrapComponentHelperTest: test_modal_trigger
214
+ ------------------------------------------------
215
+  (0.1ms) rollback transaction
216
+  (0.1ms) begin transaction
217
+ -----------------------------------------------------
218
+ BootstrapComponentHelperTest: test_modal_with_trigger
219
+ -----------------------------------------------------
220
+  (0.1ms) rollback transaction
221
+  (0.1ms) begin transaction
222
+ --------------------------------------
223
+ BootstrapNotifyHelperTest: test_notify
224
+ --------------------------------------
225
+  (0.2ms) rollback transaction
226
+  (0.1ms) begin transaction
227
+ --------------------------------
228
+ BootstrapTabHelperTest: test_tab
229
+ --------------------------------
230
+  (0.1ms) rollback transaction
231
+  (0.2ms) begin transaction
232
+ ------------------------------------
233
+ BootstrapTableHelperTest: test_table
234
+ ------------------------------------
235
+  (0.1ms) rollback transaction
236
+  (0.8ms) begin transaction
237
+ -----------------------------------------
238
+ BootstrapBaseHelperTest: test_c_image_tag
239
+ -----------------------------------------
240
+  (0.1ms) rollback transaction
241
+  (0.1ms) begin transaction
242
+ ----------------------------------------
243
+ BootstrapBaseHelperTest: test_glyph_icon
244
+ ----------------------------------------
245
+  (0.1ms) rollback transaction
246
+  (0.1ms) begin transaction
247
+ ----------------------------------
248
+ BootstrapBaseHelperTest: test_list
249
+ ----------------------------------
250
+  (0.1ms) rollback transaction
251
+  (0.1ms) begin transaction
252
+ -----------------------------------------
253
+ BootstrapBaseHelperTest: test_p_image_tag
254
+ -----------------------------------------
255
+  (0.1ms) rollback transaction
256
+  (0.1ms) begin transaction
257
+ -----------------------------------------
258
+ BootstrapBaseHelperTest: test_r_image_tag
259
+ -----------------------------------------
260
+  (0.1ms) rollback transaction
261
+  (0.1ms) begin transaction
262
+ ---------------------------------
263
+ BootstrapButtonHelperTest: test_a
264
+ ---------------------------------
265
+  (0.1ms) rollback transaction
266
+  (0.1ms) begin transaction
267
+ --------------------------------------
268
+ BootstrapButtonHelperTest: test_button
269
+ --------------------------------------
270
+  (0.1ms) rollback transaction
271
+  (0.1ms) begin transaction
272
+ -----------------------------------------------
273
+ BootstrapButtonHelperTest: test_disabled_button
274
+ -----------------------------------------------
275
+  (0.1ms) rollback transaction
276
+  (0.1ms) begin transaction
277
+ --------------------------------------
278
+ BootstrapButtonHelperTest: test_submit
279
+ --------------------------------------
280
+  (0.1ms) rollback transaction
281
+  (0.1ms) begin transaction
282
+ -----------------------------------------------
283
+ BootstrapComponentHelperTest: test_button_group
284
+ -----------------------------------------------
285
+  (0.1ms) rollback transaction
286
+  (0.1ms) begin transaction
287
+ -------------------------------------------------
288
+ BootstrapComponentHelperTest: test_button_toolbar
289
+ -------------------------------------------------
290
+  (0.1ms) rollback transaction
291
+  (0.1ms) begin transaction
292
+ ----------------------------------------
293
+ BootstrapComponentHelperTest: test_modal
294
+ ----------------------------------------
295
+  (0.1ms) rollback transaction
296
+  (0.1ms) begin transaction
297
+ ------------------------------------------------
298
+ BootstrapComponentHelperTest: test_modal_trigger
299
+ ------------------------------------------------
300
+  (0.1ms) rollback transaction
301
+  (0.1ms) begin transaction
302
+ -----------------------------------------------------
303
+ BootstrapComponentHelperTest: test_modal_with_trigger
304
+ -----------------------------------------------------
305
+  (0.1ms) rollback transaction
306
+  (0.1ms) begin transaction
307
+ --------------------------------------
308
+ BootstrapNotifyHelperTest: test_notify
309
+ --------------------------------------
310
+  (0.1ms) rollback transaction
311
+  (0.1ms) begin transaction
312
+ --------------------------------
313
+ BootstrapTabHelperTest: test_tab
314
+ --------------------------------
315
+  (0.1ms) rollback transaction
316
+  (0.1ms) begin transaction
317
+ ------------------------------------
318
+ BootstrapTableHelperTest: test_table
319
+ ------------------------------------
320
+  (0.1ms) rollback transaction
321
+  (0.5ms) begin transaction
322
+ -----------------------------------------
323
+ BootstrapBaseHelperTest: test_c_image_tag
324
+ -----------------------------------------
325
+  (0.1ms) rollback transaction
326
+  (0.1ms) begin transaction
327
+ ----------------------------------------
328
+ BootstrapBaseHelperTest: test_glyph_icon
329
+ ----------------------------------------
330
+  (0.1ms) rollback transaction
331
+  (0.1ms) begin transaction
332
+ ----------------------------------
333
+ BootstrapBaseHelperTest: test_list
334
+ ----------------------------------
335
+  (0.1ms) rollback transaction
336
+  (0.1ms) begin transaction
337
+ -----------------------------------------
338
+ BootstrapBaseHelperTest: test_p_image_tag
339
+ -----------------------------------------
340
+  (0.1ms) rollback transaction
341
+  (0.1ms) begin transaction
342
+ -----------------------------------------
343
+ BootstrapBaseHelperTest: test_r_image_tag
344
+ -----------------------------------------
345
+  (0.1ms) rollback transaction
346
+  (0.1ms) begin transaction
347
+ ---------------------------------
348
+ BootstrapButtonHelperTest: test_a
349
+ ---------------------------------
350
+  (0.1ms) rollback transaction
351
+  (0.1ms) begin transaction
352
+ --------------------------------------
353
+ BootstrapButtonHelperTest: test_button
354
+ --------------------------------------
355
+  (0.1ms) rollback transaction
356
+  (0.1ms) begin transaction
357
+ -----------------------------------------------
358
+ BootstrapButtonHelperTest: test_disabled_button
359
+ -----------------------------------------------
360
+  (0.1ms) rollback transaction
361
+  (0.1ms) begin transaction
362
+ --------------------------------------
363
+ BootstrapButtonHelperTest: test_submit
364
+ --------------------------------------
365
+  (0.1ms) rollback transaction
366
+  (0.1ms) begin transaction
367
+ ----------------------------------------
368
+ BootstrapComponentHelperTest: test_badge
369
+ ----------------------------------------
370
+  (0.1ms) rollback transaction
371
+  (0.1ms) begin transaction
372
+ -----------------------------------------------
373
+ BootstrapComponentHelperTest: test_button_group
374
+ -----------------------------------------------
375
+  (0.1ms) rollback transaction
376
+  (0.1ms) begin transaction
377
+ -------------------------------------------------
378
+ BootstrapComponentHelperTest: test_button_toolbar
379
+ -------------------------------------------------
380
+  (0.1ms) rollback transaction
381
+  (0.1ms) begin transaction
382
+ ----------------------------------------
383
+ BootstrapComponentHelperTest: test_flash
384
+ ----------------------------------------
385
+  (0.1ms) rollback transaction
386
+  (0.1ms) begin transaction
387
+ --------------------------------------------
388
+ BootstrapComponentHelperTest: test_hero_unit
389
+ --------------------------------------------
390
+  (0.1ms) rollback transaction
391
+  (0.1ms) begin transaction
392
+ ----------------------------------------
393
+ BootstrapComponentHelperTest: test_label
394
+ ----------------------------------------
395
+  (0.1ms) rollback transaction
396
+  (0.1ms) begin transaction
397
+ ----------------------------------------
398
+ BootstrapComponentHelperTest: test_modal
399
+ ----------------------------------------
400
+  (0.1ms) rollback transaction
401
+  (0.1ms) begin transaction
402
+ ------------------------------------------------
403
+ BootstrapComponentHelperTest: test_modal_trigger
404
+ ------------------------------------------------
405
+  (0.1ms) rollback transaction
406
+  (0.1ms) begin transaction
407
+ -----------------------------------------------------
408
+ BootstrapComponentHelperTest: test_modal_with_trigger
409
+ -----------------------------------------------------
410
+  (0.1ms) rollback transaction
411
+  (0.1ms) begin transaction
412
+ --------------------------------------
413
+ BootstrapComponentHelperTest: test_nav
414
+ --------------------------------------
415
+  (0.1ms) rollback transaction
416
+  (0.1ms) begin transaction
417
+ -----------------------------------------
418
+ BootstrapComponentHelperTest: test_navbar
419
+ -----------------------------------------
420
+  (0.1ms) rollback transaction
421
+  (0.1ms) begin transaction
422
+ ----------------------------------------------
423
+ BootstrapComponentHelperTest: test_page_header
424
+ ----------------------------------------------
425
+  (0.1ms) rollback transaction
426
+  (0.1ms) begin transaction
427
+ -------------------------------------------
428
+ BootstrapComponentHelperTest: test_progress
429
+ -------------------------------------------
430
+  (0.1ms) rollback transaction
431
+  (0.1ms) begin transaction
432
+ ---------------------------------------------
433
+ BootstrapComponentHelperTest: test_thumbnails
434
+ ---------------------------------------------
435
+  (0.1ms) rollback transaction
436
+  (0.1ms) begin transaction
437
+ --------------------------------------
438
+ BootstrapNotifyHelperTest: test_notify
439
+ --------------------------------------
440
+  (0.1ms) rollback transaction
441
+  (0.1ms) begin transaction
442
+ ---------------------------------
443
+ BootstrapTabHelperTest: test_pill
444
+ ---------------------------------
445
+  (0.1ms) rollback transaction
446
+  (0.1ms) begin transaction
447
+ --------------------------------
448
+ BootstrapTabHelperTest: test_tab
449
+ --------------------------------
450
+  (0.1ms) rollback transaction
451
+  (0.1ms) begin transaction
452
+ ------------------------------------
453
+ BootstrapTableHelperTest: test_table
454
+ ------------------------------------
455
+  (0.1ms) rollback transaction
456
+  (0.4ms) begin transaction
457
+ -----------------------------------------
458
+ BootstrapBaseHelperTest: test_c_image_tag
459
+ -----------------------------------------
460
+  (0.1ms) rollback transaction
461
+  (0.1ms) begin transaction
462
+ ----------------------------------------
463
+ BootstrapBaseHelperTest: test_glyph_icon
464
+ ----------------------------------------
465
+  (0.1ms) rollback transaction
466
+  (0.1ms) begin transaction
467
+ ----------------------------------
468
+ BootstrapBaseHelperTest: test_list
469
+ ----------------------------------
470
+  (0.1ms) rollback transaction
471
+  (0.1ms) begin transaction
472
+ -----------------------------------------
473
+ BootstrapBaseHelperTest: test_p_image_tag
474
+ -----------------------------------------
475
+  (0.1ms) rollback transaction
476
+  (0.2ms) begin transaction
477
+ -----------------------------------------
478
+ BootstrapBaseHelperTest: test_r_image_tag
479
+ -----------------------------------------
480
+  (0.1ms) rollback transaction
481
+  (0.1ms) begin transaction
482
+ ---------------------------------
483
+ BootstrapButtonHelperTest: test_a
484
+ ---------------------------------
485
+  (0.1ms) rollback transaction
486
+  (0.1ms) begin transaction
487
+ --------------------------------------
488
+ BootstrapButtonHelperTest: test_button
489
+ --------------------------------------
490
+  (0.1ms) rollback transaction
491
+  (0.1ms) begin transaction
492
+ -----------------------------------------------
493
+ BootstrapButtonHelperTest: test_disabled_button
494
+ -----------------------------------------------
495
+  (0.1ms) rollback transaction
496
+  (0.1ms) begin transaction
497
+ --------------------------------------
498
+ BootstrapButtonHelperTest: test_submit
499
+ --------------------------------------
500
+  (0.1ms) rollback transaction
501
+  (0.1ms) begin transaction
502
+ ----------------------------------------
503
+ BootstrapComponentHelperTest: test_badge
504
+ ----------------------------------------
505
+  (0.1ms) rollback transaction
506
+  (0.1ms) begin transaction
507
+ -----------------------------------------------
508
+ BootstrapComponentHelperTest: test_button_group
509
+ -----------------------------------------------
510
+  (0.1ms) rollback transaction
511
+  (0.1ms) begin transaction
512
+ -------------------------------------------------
513
+ BootstrapComponentHelperTest: test_button_toolbar
514
+ -------------------------------------------------
515
+  (0.1ms) rollback transaction
516
+  (0.1ms) begin transaction
517
+ ----------------------------------------
518
+ BootstrapComponentHelperTest: test_flash
519
+ ----------------------------------------
520
+  (0.1ms) rollback transaction
521
+  (0.1ms) begin transaction
522
+ --------------------------------------------
523
+ BootstrapComponentHelperTest: test_hero_unit
524
+ --------------------------------------------
525
+  (0.1ms) rollback transaction
526
+  (0.1ms) begin transaction
527
+ ----------------------------------------
528
+ BootstrapComponentHelperTest: test_label
529
+ ----------------------------------------
530
+  (0.1ms) rollback transaction
531
+  (0.1ms) begin transaction
532
+ ----------------------------------------
533
+ BootstrapComponentHelperTest: test_modal
534
+ ----------------------------------------
535
+  (0.1ms) rollback transaction
536
+  (0.1ms) begin transaction
537
+ ------------------------------------------------
538
+ BootstrapComponentHelperTest: test_modal_trigger
539
+ ------------------------------------------------
540
+  (0.1ms) rollback transaction
541
+  (0.1ms) begin transaction
542
+ -----------------------------------------------------
543
+ BootstrapComponentHelperTest: test_modal_with_trigger
544
+ -----------------------------------------------------
545
+  (0.1ms) rollback transaction
546
+  (0.1ms) begin transaction
547
+ --------------------------------------
548
+ BootstrapComponentHelperTest: test_nav
549
+ --------------------------------------
550
+  (0.1ms) rollback transaction
551
+  (0.1ms) begin transaction
552
+ -----------------------------------------
553
+ BootstrapComponentHelperTest: test_navbar
554
+ -----------------------------------------
555
+  (0.1ms) rollback transaction
556
+  (0.1ms) begin transaction
557
+ ----------------------------------------------
558
+ BootstrapComponentHelperTest: test_page_header
559
+ ----------------------------------------------
560
+  (0.1ms) rollback transaction
561
+  (0.1ms) begin transaction
562
+ -------------------------------------------
563
+ BootstrapComponentHelperTest: test_progress
564
+ -------------------------------------------
565
+  (0.1ms) rollback transaction
566
+  (0.1ms) begin transaction
567
+ ---------------------------------------------
568
+ BootstrapComponentHelperTest: test_thumbnails
569
+ ---------------------------------------------
570
+  (0.1ms) rollback transaction
571
+  (0.1ms) begin transaction
572
+ --------------------------------------
573
+ BootstrapNotifyHelperTest: test_notify
574
+ --------------------------------------
575
+  (0.1ms) rollback transaction
576
+  (0.1ms) begin transaction
577
+ ---------------------------------
578
+ BootstrapTabHelperTest: test_pill
579
+ ---------------------------------
580
+  (0.1ms) rollback transaction
581
+  (0.1ms) begin transaction
582
+ --------------------------------
583
+ BootstrapTabHelperTest: test_tab
584
+ --------------------------------
585
+  (0.1ms) rollback transaction
586
+  (0.1ms) begin transaction
587
+ ------------------------------------
588
+ BootstrapTableHelperTest: test_table
589
+ ------------------------------------
590
+  (0.1ms) rollback transaction
591
+  (0.5ms) begin transaction
592
+ -----------------------------------------
593
+ BootstrapBaseHelperTest: test_c_image_tag
594
+ -----------------------------------------
595
+  (0.2ms) rollback transaction
596
+  (0.1ms) begin transaction
597
+ ----------------------------------------
598
+ BootstrapBaseHelperTest: test_glyph_icon
599
+ ----------------------------------------
600
+  (0.1ms) rollback transaction
601
+  (0.1ms) begin transaction
602
+ ----------------------------------
603
+ BootstrapBaseHelperTest: test_list
604
+ ----------------------------------
605
+  (0.2ms) rollback transaction
606
+  (0.1ms) begin transaction
607
+ -----------------------------------------
608
+ BootstrapBaseHelperTest: test_p_image_tag
609
+ -----------------------------------------
610
+  (0.1ms) rollback transaction
611
+  (0.1ms) begin transaction
612
+ -----------------------------------------
613
+ BootstrapBaseHelperTest: test_r_image_tag
614
+ -----------------------------------------
615
+  (0.1ms) rollback transaction
616
+  (0.1ms) begin transaction
617
+ ---------------------------------
618
+ BootstrapButtonHelperTest: test_a
619
+ ---------------------------------
620
+  (0.1ms) rollback transaction
621
+  (0.1ms) begin transaction
622
+ --------------------------------------
623
+ BootstrapButtonHelperTest: test_button
624
+ --------------------------------------
625
+  (0.1ms) rollback transaction
626
+  (0.1ms) begin transaction
627
+ -----------------------------------------------
628
+ BootstrapButtonHelperTest: test_disabled_button
629
+ -----------------------------------------------
630
+  (0.1ms) rollback transaction
631
+  (0.1ms) begin transaction
632
+ --------------------------------------
633
+ BootstrapButtonHelperTest: test_submit
634
+ --------------------------------------
635
+  (0.2ms) rollback transaction
636
+  (0.1ms) begin transaction
637
+ ----------------------------------------
638
+ BootstrapComponentHelperTest: test_badge
639
+ ----------------------------------------
640
+  (0.1ms) rollback transaction
641
+  (0.1ms) begin transaction
642
+ -----------------------------------------------
643
+ BootstrapComponentHelperTest: test_button_group
644
+ -----------------------------------------------
645
+  (0.2ms) rollback transaction
646
+  (0.2ms) begin transaction
647
+ -------------------------------------------------
648
+ BootstrapComponentHelperTest: test_button_toolbar
649
+ -------------------------------------------------
650
+  (0.1ms) rollback transaction
651
+  (0.1ms) begin transaction
652
+ ----------------------------------------
653
+ BootstrapComponentHelperTest: test_flash
654
+ ----------------------------------------
655
+  (0.1ms) rollback transaction
656
+  (0.1ms) begin transaction
657
+ --------------------------------------------
658
+ BootstrapComponentHelperTest: test_hero_unit
659
+ --------------------------------------------
660
+  (0.1ms) rollback transaction
661
+  (0.1ms) begin transaction
662
+ ----------------------------------------
663
+ BootstrapComponentHelperTest: test_label
664
+ ----------------------------------------
665
+  (0.1ms) rollback transaction
666
+  (0.1ms) begin transaction
667
+ ----------------------------------------
668
+ BootstrapComponentHelperTest: test_modal
669
+ ----------------------------------------
670
+  (0.1ms) rollback transaction
671
+  (0.1ms) begin transaction
672
+ ------------------------------------------------
673
+ BootstrapComponentHelperTest: test_modal_trigger
674
+ ------------------------------------------------
675
+  (0.3ms) rollback transaction
676
+  (0.1ms) begin transaction
677
+ -----------------------------------------------------
678
+ BootstrapComponentHelperTest: test_modal_with_trigger
679
+ -----------------------------------------------------
680
+  (0.1ms) rollback transaction
681
+  (0.1ms) begin transaction
682
+ --------------------------------------
683
+ BootstrapComponentHelperTest: test_nav
684
+ --------------------------------------
685
+  (0.1ms) rollback transaction
686
+  (0.1ms) begin transaction
687
+ -----------------------------------------
688
+ BootstrapComponentHelperTest: test_navbar
689
+ -----------------------------------------
690
+  (0.1ms) rollback transaction
691
+  (0.1ms) begin transaction
692
+ ----------------------------------------------
693
+ BootstrapComponentHelperTest: test_page_header
694
+ ----------------------------------------------
695
+  (0.1ms) rollback transaction
696
+  (0.1ms) begin transaction
697
+ -------------------------------------------
698
+ BootstrapComponentHelperTest: test_progress
699
+ -------------------------------------------
700
+  (0.2ms) rollback transaction
701
+  (0.1ms) begin transaction
702
+ ---------------------------------------------
703
+ BootstrapComponentHelperTest: test_thumbnails
704
+ ---------------------------------------------
705
+  (0.2ms) rollback transaction
706
+  (0.1ms) begin transaction
707
+ --------------------------------------
708
+ BootstrapNotifyHelperTest: test_notify
709
+ --------------------------------------
710
+  (0.1ms) rollback transaction
711
+  (0.1ms) begin transaction
712
+ ---------------------------------
713
+ BootstrapTabHelperTest: test_pill
714
+ ---------------------------------
715
+  (0.2ms) rollback transaction
716
+  (0.1ms) begin transaction
717
+ --------------------------------
718
+ BootstrapTabHelperTest: test_tab
719
+ --------------------------------
720
+  (0.1ms) rollback transaction
721
+  (0.2ms) begin transaction
722
+ ------------------------------------
723
+ BootstrapTableHelperTest: test_table
724
+ ------------------------------------
725
+  (0.1ms) rollback transaction
726
+  (0.5ms) begin transaction
727
+ -----------------------------------------
728
+ BootstrapBaseHelperTest: test_c_image_tag
729
+ -----------------------------------------
730
+  (0.1ms) rollback transaction
731
+  (0.1ms) begin transaction
732
+ ----------------------------------------
733
+ BootstrapBaseHelperTest: test_glyph_icon
734
+ ----------------------------------------
735
+  (0.1ms) rollback transaction
736
+  (0.1ms) begin transaction
737
+ ----------------------------------
738
+ BootstrapBaseHelperTest: test_list
739
+ ----------------------------------
740
+  (0.1ms) rollback transaction
741
+  (0.1ms) begin transaction
742
+ -----------------------------------------
743
+ BootstrapBaseHelperTest: test_p_image_tag
744
+ -----------------------------------------
745
+  (0.1ms) rollback transaction
746
+  (0.1ms) begin transaction
747
+ -----------------------------------------
748
+ BootstrapBaseHelperTest: test_r_image_tag
749
+ -----------------------------------------
750
+  (0.1ms) rollback transaction
751
+  (0.1ms) begin transaction
752
+ ---------------------------------
753
+ BootstrapButtonHelperTest: test_a
754
+ ---------------------------------
755
+  (0.1ms) rollback transaction
756
+  (0.1ms) begin transaction
757
+ --------------------------------------
758
+ BootstrapButtonHelperTest: test_button
759
+ --------------------------------------
760
+  (0.1ms) rollback transaction
761
+  (0.1ms) begin transaction
762
+ -----------------------------------------------
763
+ BootstrapButtonHelperTest: test_disabled_button
764
+ -----------------------------------------------
765
+  (0.1ms) rollback transaction
766
+  (0.1ms) begin transaction
767
+ --------------------------------------
768
+ BootstrapButtonHelperTest: test_submit
769
+ --------------------------------------
770
+  (0.1ms) rollback transaction
771
+  (0.1ms) begin transaction
772
+ ----------------------------------------
773
+ BootstrapComponentHelperTest: test_badge
774
+ ----------------------------------------
775
+  (0.1ms) rollback transaction
776
+  (0.1ms) begin transaction
777
+ -----------------------------------------------
778
+ BootstrapComponentHelperTest: test_button_group
779
+ -----------------------------------------------
780
+  (0.1ms) rollback transaction
781
+  (0.1ms) begin transaction
782
+ -------------------------------------------------
783
+ BootstrapComponentHelperTest: test_button_toolbar
784
+ -------------------------------------------------
785
+  (0.1ms) rollback transaction
786
+  (0.1ms) begin transaction
787
+ ----------------------------------------
788
+ BootstrapComponentHelperTest: test_flash
789
+ ----------------------------------------
790
+  (0.1ms) rollback transaction
791
+  (0.1ms) begin transaction
792
+ --------------------------------------------
793
+ BootstrapComponentHelperTest: test_hero_unit
794
+ --------------------------------------------
795
+  (0.1ms) rollback transaction
796
+  (0.1ms) begin transaction
797
+ ----------------------------------------
798
+ BootstrapComponentHelperTest: test_label
799
+ ----------------------------------------
800
+  (0.1ms) rollback transaction
801
+  (0.1ms) begin transaction
802
+ ----------------------------------------
803
+ BootstrapComponentHelperTest: test_modal
804
+ ----------------------------------------
805
+  (0.1ms) rollback transaction
806
+  (0.1ms) begin transaction
807
+ ------------------------------------------------
808
+ BootstrapComponentHelperTest: test_modal_trigger
809
+ ------------------------------------------------
810
+  (0.1ms) rollback transaction
811
+  (0.1ms) begin transaction
812
+ -----------------------------------------------------
813
+ BootstrapComponentHelperTest: test_modal_with_trigger
814
+ -----------------------------------------------------
815
+  (0.1ms) rollback transaction
816
+  (0.1ms) begin transaction
817
+ --------------------------------------
818
+ BootstrapComponentHelperTest: test_nav
819
+ --------------------------------------
820
+  (0.1ms) rollback transaction
821
+  (0.1ms) begin transaction
822
+ -----------------------------------------
823
+ BootstrapComponentHelperTest: test_navbar
824
+ -----------------------------------------
825
+  (0.1ms) rollback transaction
826
+  (0.1ms) begin transaction
827
+ ----------------------------------------------
828
+ BootstrapComponentHelperTest: test_page_header
829
+ ----------------------------------------------
830
+  (0.1ms) rollback transaction
831
+  (0.1ms) begin transaction
832
+ -------------------------------------------
833
+ BootstrapComponentHelperTest: test_progress
834
+ -------------------------------------------
835
+  (0.1ms) rollback transaction
836
+  (0.1ms) begin transaction
837
+ ---------------------------------------------
838
+ BootstrapComponentHelperTest: test_thumbnails
839
+ ---------------------------------------------
840
+  (0.1ms) rollback transaction
841
+  (0.1ms) begin transaction
842
+ --------------------------------------
843
+ BootstrapNotifyHelperTest: test_notify
844
+ --------------------------------------
845
+  (0.1ms) rollback transaction
846
+  (0.1ms) begin transaction
847
+ ---------------------------------
848
+ BootstrapTabHelperTest: test_pill
849
+ ---------------------------------
850
+  (0.1ms) rollback transaction
851
+  (0.1ms) begin transaction
852
+ --------------------------------
853
+ BootstrapTabHelperTest: test_tab
854
+ --------------------------------
855
+  (0.1ms) rollback transaction
856
+  (0.1ms) begin transaction
857
+ ------------------------------------
858
+ BootstrapTableHelperTest: test_table
859
+ ------------------------------------
860
+  (0.1ms) rollback transaction
861
+  (0.4ms) begin transaction
862
+ -----------------------------------------
863
+ BootstrapBaseHelperTest: test_c_image_tag
864
+ -----------------------------------------
865
+  (0.1ms) rollback transaction
866
+  (0.1ms) begin transaction
867
+ ----------------------------------------
868
+ BootstrapBaseHelperTest: test_glyph_icon
869
+ ----------------------------------------
870
+  (0.1ms) rollback transaction
871
+  (0.1ms) begin transaction
872
+ ----------------------------------
873
+ BootstrapBaseHelperTest: test_list
874
+ ----------------------------------
875
+  (0.1ms) rollback transaction
876
+  (0.1ms) begin transaction
877
+ -----------------------------------------
878
+ BootstrapBaseHelperTest: test_p_image_tag
879
+ -----------------------------------------
880
+  (0.1ms) rollback transaction
881
+  (0.1ms) begin transaction
882
+ -----------------------------------------
883
+ BootstrapBaseHelperTest: test_r_image_tag
884
+ -----------------------------------------
885
+  (0.1ms) rollback transaction
886
+  (0.1ms) begin transaction
887
+ ---------------------------------
888
+ BootstrapButtonHelperTest: test_a
889
+ ---------------------------------
890
+  (0.1ms) rollback transaction
891
+  (0.1ms) begin transaction
892
+ --------------------------------------
893
+ BootstrapButtonHelperTest: test_button
894
+ --------------------------------------
895
+  (0.1ms) rollback transaction
896
+  (0.1ms) begin transaction
897
+ -----------------------------------------------
898
+ BootstrapButtonHelperTest: test_disabled_button
899
+ -----------------------------------------------
900
+  (0.1ms) rollback transaction
901
+  (0.1ms) begin transaction
902
+ --------------------------------------
903
+ BootstrapButtonHelperTest: test_submit
904
+ --------------------------------------
905
+  (0.1ms) rollback transaction
906
+  (0.1ms) begin transaction
907
+ ----------------------------------------
908
+ BootstrapComponentHelperTest: test_badge
909
+ ----------------------------------------
910
+  (0.1ms) rollback transaction
911
+  (0.1ms) begin transaction
912
+ -----------------------------------------------
913
+ BootstrapComponentHelperTest: test_button_group
914
+ -----------------------------------------------
915
+  (0.1ms) rollback transaction
916
+  (0.1ms) begin transaction
917
+ -------------------------------------------------
918
+ BootstrapComponentHelperTest: test_button_toolbar
919
+ -------------------------------------------------
920
+  (0.1ms) rollback transaction
921
+  (0.1ms) begin transaction
922
+ ----------------------------------------
923
+ BootstrapComponentHelperTest: test_flash
924
+ ----------------------------------------
925
+  (0.1ms) rollback transaction
926
+  (0.1ms) begin transaction
927
+ --------------------------------------------
928
+ BootstrapComponentHelperTest: test_hero_unit
929
+ --------------------------------------------
930
+  (0.1ms) rollback transaction
931
+  (0.1ms) begin transaction
932
+ ----------------------------------------
933
+ BootstrapComponentHelperTest: test_label
934
+ ----------------------------------------
935
+  (0.1ms) rollback transaction
936
+  (0.1ms) begin transaction
937
+ ----------------------------------------
938
+ BootstrapComponentHelperTest: test_modal
939
+ ----------------------------------------
940
+  (0.1ms) rollback transaction
941
+  (0.1ms) begin transaction
942
+ ------------------------------------------------
943
+ BootstrapComponentHelperTest: test_modal_trigger
944
+ ------------------------------------------------
945
+  (0.1ms) rollback transaction
946
+  (0.1ms) begin transaction
947
+ -----------------------------------------------------
948
+ BootstrapComponentHelperTest: test_modal_with_trigger
949
+ -----------------------------------------------------
950
+  (0.1ms) rollback transaction
951
+  (0.1ms) begin transaction
952
+ --------------------------------------
953
+ BootstrapComponentHelperTest: test_nav
954
+ --------------------------------------
955
+  (0.1ms) rollback transaction
956
+  (0.1ms) begin transaction
957
+ -----------------------------------------
958
+ BootstrapComponentHelperTest: test_navbar
959
+ -----------------------------------------
960
+  (0.1ms) rollback transaction
961
+  (0.1ms) begin transaction
962
+ ----------------------------------------------
963
+ BootstrapComponentHelperTest: test_page_header
964
+ ----------------------------------------------
965
+  (0.1ms) rollback transaction
966
+  (0.1ms) begin transaction
967
+ -------------------------------------------
968
+ BootstrapComponentHelperTest: test_progress
969
+ -------------------------------------------
970
+  (0.1ms) rollback transaction
971
+  (0.1ms) begin transaction
972
+ ---------------------------------------------
973
+ BootstrapComponentHelperTest: test_thumbnails
974
+ ---------------------------------------------
975
+  (0.1ms) rollback transaction
976
+  (0.1ms) begin transaction
977
+ --------------------------------------
978
+ BootstrapNotifyHelperTest: test_notify
979
+ --------------------------------------
980
+  (0.1ms) rollback transaction
981
+  (0.1ms) begin transaction
982
+ ---------------------------------
983
+ BootstrapTabHelperTest: test_pill
984
+ ---------------------------------
985
+  (0.1ms) rollback transaction
986
+  (0.1ms) begin transaction
987
+ --------------------------------
988
+ BootstrapTabHelperTest: test_tab
989
+ --------------------------------
990
+  (0.1ms) rollback transaction
991
+  (0.1ms) begin transaction
992
+ ------------------------------------
993
+ BootstrapTableHelperTest: test_table
994
+ ------------------------------------
995
+  (0.1ms) rollback transaction
996
+  (0.4ms) begin transaction
997
+ -----------------------------------------
998
+ BootstrapBaseHelperTest: test_c_image_tag
999
+ -----------------------------------------
1000
+  (0.2ms) rollback transaction
1001
+  (0.1ms) begin transaction
1002
+ ----------------------------------------
1003
+ BootstrapBaseHelperTest: test_glyph_icon
1004
+ ----------------------------------------
1005
+  (0.1ms) rollback transaction
1006
+  (0.1ms) begin transaction
1007
+ ----------------------------------
1008
+ BootstrapBaseHelperTest: test_list
1009
+ ----------------------------------
1010
+  (0.1ms) rollback transaction
1011
+  (0.1ms) begin transaction
1012
+ -----------------------------------------
1013
+ BootstrapBaseHelperTest: test_p_image_tag
1014
+ -----------------------------------------
1015
+  (0.1ms) rollback transaction
1016
+  (0.1ms) begin transaction
1017
+ -----------------------------------------
1018
+ BootstrapBaseHelperTest: test_r_image_tag
1019
+ -----------------------------------------
1020
+  (0.1ms) rollback transaction
1021
+  (0.1ms) begin transaction
1022
+ ---------------------------------
1023
+ BootstrapButtonHelperTest: test_a
1024
+ ---------------------------------
1025
+  (0.1ms) rollback transaction
1026
+  (0.1ms) begin transaction
1027
+ --------------------------------------
1028
+ BootstrapButtonHelperTest: test_button
1029
+ --------------------------------------
1030
+  (0.1ms) rollback transaction
1031
+  (0.1ms) begin transaction
1032
+ -----------------------------------------------
1033
+ BootstrapButtonHelperTest: test_disabled_button
1034
+ -----------------------------------------------
1035
+  (0.1ms) rollback transaction
1036
+  (0.1ms) begin transaction
1037
+ --------------------------------------
1038
+ BootstrapButtonHelperTest: test_submit
1039
+ --------------------------------------
1040
+  (0.1ms) rollback transaction
1041
+  (0.1ms) begin transaction
1042
+ ----------------------------------------
1043
+ BootstrapComponentHelperTest: test_badge
1044
+ ----------------------------------------
1045
+  (0.1ms) rollback transaction
1046
+  (0.1ms) begin transaction
1047
+ -----------------------------------------------
1048
+ BootstrapComponentHelperTest: test_button_group
1049
+ -----------------------------------------------
1050
+  (0.1ms) rollback transaction
1051
+  (0.1ms) begin transaction
1052
+ -------------------------------------------------
1053
+ BootstrapComponentHelperTest: test_button_toolbar
1054
+ -------------------------------------------------
1055
+  (0.1ms) rollback transaction
1056
+  (0.1ms) begin transaction
1057
+ ----------------------------------------
1058
+ BootstrapComponentHelperTest: test_flash
1059
+ ----------------------------------------
1060
+  (0.1ms) rollback transaction
1061
+  (0.1ms) begin transaction
1062
+ --------------------------------------------
1063
+ BootstrapComponentHelperTest: test_hero_unit
1064
+ --------------------------------------------
1065
+  (0.1ms) rollback transaction
1066
+  (0.1ms) begin transaction
1067
+ ----------------------------------------
1068
+ BootstrapComponentHelperTest: test_label
1069
+ ----------------------------------------
1070
+  (0.1ms) rollback transaction
1071
+  (0.1ms) begin transaction
1072
+ ----------------------------------------
1073
+ BootstrapComponentHelperTest: test_modal
1074
+ ----------------------------------------
1075
+  (0.1ms) rollback transaction
1076
+  (0.1ms) begin transaction
1077
+ ------------------------------------------------
1078
+ BootstrapComponentHelperTest: test_modal_trigger
1079
+ ------------------------------------------------
1080
+  (0.1ms) rollback transaction
1081
+  (0.1ms) begin transaction
1082
+ -----------------------------------------------------
1083
+ BootstrapComponentHelperTest: test_modal_with_trigger
1084
+ -----------------------------------------------------
1085
+  (0.1ms) rollback transaction
1086
+  (0.1ms) begin transaction
1087
+ --------------------------------------
1088
+ BootstrapComponentHelperTest: test_nav
1089
+ --------------------------------------
1090
+  (0.1ms) rollback transaction
1091
+  (0.1ms) begin transaction
1092
+ -----------------------------------------
1093
+ BootstrapComponentHelperTest: test_navbar
1094
+ -----------------------------------------
1095
+  (0.1ms) rollback transaction
1096
+  (0.1ms) begin transaction
1097
+ ----------------------------------------------
1098
+ BootstrapComponentHelperTest: test_page_header
1099
+ ----------------------------------------------
1100
+  (0.1ms) rollback transaction
1101
+  (0.1ms) begin transaction
1102
+ -------------------------------------------
1103
+ BootstrapComponentHelperTest: test_progress
1104
+ -------------------------------------------
1105
+  (0.1ms) rollback transaction
1106
+  (0.1ms) begin transaction
1107
+ ---------------------------------------------
1108
+ BootstrapComponentHelperTest: test_thumbnails
1109
+ ---------------------------------------------
1110
+  (0.1ms) rollback transaction
1111
+  (0.1ms) begin transaction
1112
+ --------------------------------------
1113
+ BootstrapNotifyHelperTest: test_notify
1114
+ --------------------------------------
1115
+  (0.1ms) rollback transaction
1116
+  (0.1ms) begin transaction
1117
+ ---------------------------------
1118
+ BootstrapTabHelperTest: test_pill
1119
+ ---------------------------------
1120
+  (0.1ms) rollback transaction
1121
+  (0.1ms) begin transaction
1122
+ --------------------------------
1123
+ BootstrapTabHelperTest: test_tab
1124
+ --------------------------------
1125
+  (0.1ms) rollback transaction
1126
+  (0.1ms) begin transaction
1127
+ ------------------------------------
1128
+ BootstrapTableHelperTest: test_table
1129
+ ------------------------------------
1130
+  (0.1ms) rollback transaction
1131
+  (0.4ms) begin transaction
1132
+ -----------------------------------------
1133
+ BootstrapBaseHelperTest: test_c_image_tag
1134
+ -----------------------------------------
1135
+  (0.1ms) rollback transaction
1136
+  (0.1ms) begin transaction
1137
+ ----------------------------------------
1138
+ BootstrapBaseHelperTest: test_glyph_icon
1139
+ ----------------------------------------
1140
+  (0.1ms) rollback transaction
1141
+  (0.1ms) begin transaction
1142
+ ----------------------------------
1143
+ BootstrapBaseHelperTest: test_list
1144
+ ----------------------------------
1145
+  (0.1ms) rollback transaction
1146
+  (0.1ms) begin transaction
1147
+ -----------------------------------------
1148
+ BootstrapBaseHelperTest: test_p_image_tag
1149
+ -----------------------------------------
1150
+  (0.1ms) rollback transaction
1151
+  (0.1ms) begin transaction
1152
+ -----------------------------------------
1153
+ BootstrapBaseHelperTest: test_r_image_tag
1154
+ -----------------------------------------
1155
+  (0.1ms) rollback transaction
1156
+  (0.1ms) begin transaction
1157
+ ---------------------------------
1158
+ BootstrapButtonHelperTest: test_a
1159
+ ---------------------------------
1160
+  (0.1ms) rollback transaction
1161
+  (0.1ms) begin transaction
1162
+ --------------------------------------
1163
+ BootstrapButtonHelperTest: test_button
1164
+ --------------------------------------
1165
+  (0.1ms) rollback transaction
1166
+  (0.1ms) begin transaction
1167
+ -----------------------------------------------
1168
+ BootstrapButtonHelperTest: test_disabled_button
1169
+ -----------------------------------------------
1170
+  (0.1ms) rollback transaction
1171
+  (0.1ms) begin transaction
1172
+ --------------------------------------
1173
+ BootstrapButtonHelperTest: test_submit
1174
+ --------------------------------------
1175
+  (0.1ms) rollback transaction
1176
+  (0.1ms) begin transaction
1177
+ ----------------------------------------
1178
+ BootstrapComponentHelperTest: test_badge
1179
+ ----------------------------------------
1180
+  (0.1ms) rollback transaction
1181
+  (0.1ms) begin transaction
1182
+ -----------------------------------------------
1183
+ BootstrapComponentHelperTest: test_button_group
1184
+ -----------------------------------------------
1185
+  (0.1ms) rollback transaction
1186
+  (0.1ms) begin transaction
1187
+ -------------------------------------------------
1188
+ BootstrapComponentHelperTest: test_button_toolbar
1189
+ -------------------------------------------------
1190
+  (0.1ms) rollback transaction
1191
+  (0.1ms) begin transaction
1192
+ ----------------------------------------
1193
+ BootstrapComponentHelperTest: test_flash
1194
+ ----------------------------------------
1195
+  (0.1ms) rollback transaction
1196
+  (0.1ms) begin transaction
1197
+ --------------------------------------------
1198
+ BootstrapComponentHelperTest: test_hero_unit
1199
+ --------------------------------------------
1200
+  (0.1ms) rollback transaction
1201
+  (0.1ms) begin transaction
1202
+ ----------------------------------------
1203
+ BootstrapComponentHelperTest: test_label
1204
+ ----------------------------------------
1205
+  (0.1ms) rollback transaction
1206
+  (0.1ms) begin transaction
1207
+ ----------------------------------------
1208
+ BootstrapComponentHelperTest: test_modal
1209
+ ----------------------------------------
1210
+  (0.1ms) rollback transaction
1211
+  (0.1ms) begin transaction
1212
+ ------------------------------------------------
1213
+ BootstrapComponentHelperTest: test_modal_trigger
1214
+ ------------------------------------------------
1215
+  (0.1ms) rollback transaction
1216
+  (0.1ms) begin transaction
1217
+ -----------------------------------------------------
1218
+ BootstrapComponentHelperTest: test_modal_with_trigger
1219
+ -----------------------------------------------------
1220
+  (0.1ms) rollback transaction
1221
+  (0.1ms) begin transaction
1222
+ --------------------------------------
1223
+ BootstrapComponentHelperTest: test_nav
1224
+ --------------------------------------
1225
+  (0.1ms) rollback transaction
1226
+  (0.1ms) begin transaction
1227
+ -----------------------------------------
1228
+ BootstrapComponentHelperTest: test_navbar
1229
+ -----------------------------------------
1230
+  (0.1ms) rollback transaction
1231
+  (0.1ms) begin transaction
1232
+ ----------------------------------------------
1233
+ BootstrapComponentHelperTest: test_page_header
1234
+ ----------------------------------------------
1235
+  (0.1ms) rollback transaction
1236
+  (0.1ms) begin transaction
1237
+ -------------------------------------------
1238
+ BootstrapComponentHelperTest: test_progress
1239
+ -------------------------------------------
1240
+  (0.1ms) rollback transaction
1241
+  (0.1ms) begin transaction
1242
+ ---------------------------------------------
1243
+ BootstrapComponentHelperTest: test_thumbnails
1244
+ ---------------------------------------------
1245
+  (0.3ms) rollback transaction
1246
+  (0.1ms) begin transaction
1247
+ --------------------------------------
1248
+ BootstrapNotifyHelperTest: test_notify
1249
+ --------------------------------------
1250
+  (0.1ms) rollback transaction
1251
+  (0.1ms) begin transaction
1252
+ ---------------------------------
1253
+ BootstrapTabHelperTest: test_pill
1254
+ ---------------------------------
1255
+  (0.1ms) rollback transaction
1256
+  (0.1ms) begin transaction
1257
+ --------------------------------
1258
+ BootstrapTabHelperTest: test_tab
1259
+ --------------------------------
1260
+  (0.1ms) rollback transaction
1261
+  (0.1ms) begin transaction
1262
+ ------------------------------------
1263
+ BootstrapTableHelperTest: test_table
1264
+ ------------------------------------
1265
+  (0.1ms) rollback transaction
1266
+  (0.4ms) begin transaction
1267
+ -----------------------------------------
1268
+ BootstrapBaseHelperTest: test_c_image_tag
1269
+ -----------------------------------------
1270
+  (0.1ms) rollback transaction
1271
+  (0.1ms) begin transaction
1272
+ ----------------------------------------
1273
+ BootstrapBaseHelperTest: test_glyph_icon
1274
+ ----------------------------------------
1275
+  (0.1ms) rollback transaction
1276
+  (0.1ms) begin transaction
1277
+ ----------------------------------
1278
+ BootstrapBaseHelperTest: test_list
1279
+ ----------------------------------
1280
+  (0.1ms) rollback transaction
1281
+  (0.1ms) begin transaction
1282
+ -----------------------------------------
1283
+ BootstrapBaseHelperTest: test_p_image_tag
1284
+ -----------------------------------------
1285
+  (0.1ms) rollback transaction
1286
+  (0.1ms) begin transaction
1287
+ -----------------------------------------
1288
+ BootstrapBaseHelperTest: test_r_image_tag
1289
+ -----------------------------------------
1290
+  (0.1ms) rollback transaction
1291
+  (0.1ms) begin transaction
1292
+ ---------------------------------
1293
+ BootstrapButtonHelperTest: test_a
1294
+ ---------------------------------
1295
+  (0.1ms) rollback transaction
1296
+  (0.1ms) begin transaction
1297
+ --------------------------------------
1298
+ BootstrapButtonHelperTest: test_button
1299
+ --------------------------------------
1300
+  (0.1ms) rollback transaction
1301
+  (0.1ms) begin transaction
1302
+ -----------------------------------------------
1303
+ BootstrapButtonHelperTest: test_disabled_button
1304
+ -----------------------------------------------
1305
+  (0.1ms) rollback transaction
1306
+  (0.1ms) begin transaction
1307
+ --------------------------------------
1308
+ BootstrapButtonHelperTest: test_submit
1309
+ --------------------------------------
1310
+  (0.1ms) rollback transaction
1311
+  (0.1ms) begin transaction
1312
+ ----------------------------------------
1313
+ BootstrapComponentHelperTest: test_badge
1314
+ ----------------------------------------
1315
+  (0.1ms) rollback transaction
1316
+  (0.1ms) begin transaction
1317
+ -----------------------------------------------
1318
+ BootstrapComponentHelperTest: test_button_group
1319
+ -----------------------------------------------
1320
+  (0.1ms) rollback transaction
1321
+  (0.1ms) begin transaction
1322
+ -------------------------------------------------
1323
+ BootstrapComponentHelperTest: test_button_toolbar
1324
+ -------------------------------------------------
1325
+  (0.1ms) rollback transaction
1326
+  (0.1ms) begin transaction
1327
+ ----------------------------------------
1328
+ BootstrapComponentHelperTest: test_flash
1329
+ ----------------------------------------
1330
+  (0.1ms) rollback transaction
1331
+  (0.1ms) begin transaction
1332
+ --------------------------------------------
1333
+ BootstrapComponentHelperTest: test_hero_unit
1334
+ --------------------------------------------
1335
+  (0.1ms) rollback transaction
1336
+  (0.1ms) begin transaction
1337
+ ----------------------------------------
1338
+ BootstrapComponentHelperTest: test_label
1339
+ ----------------------------------------
1340
+  (0.1ms) rollback transaction
1341
+  (0.1ms) begin transaction
1342
+ ----------------------------------------
1343
+ BootstrapComponentHelperTest: test_modal
1344
+ ----------------------------------------
1345
+  (0.1ms) rollback transaction
1346
+  (0.1ms) begin transaction
1347
+ ------------------------------------------------
1348
+ BootstrapComponentHelperTest: test_modal_trigger
1349
+ ------------------------------------------------
1350
+  (0.1ms) rollback transaction
1351
+  (0.1ms) begin transaction
1352
+ -----------------------------------------------------
1353
+ BootstrapComponentHelperTest: test_modal_with_trigger
1354
+ -----------------------------------------------------
1355
+  (0.1ms) rollback transaction
1356
+  (0.1ms) begin transaction
1357
+ --------------------------------------
1358
+ BootstrapComponentHelperTest: test_nav
1359
+ --------------------------------------
1360
+  (0.1ms) rollback transaction
1361
+  (0.1ms) begin transaction
1362
+ -----------------------------------------
1363
+ BootstrapComponentHelperTest: test_navbar
1364
+ -----------------------------------------
1365
+  (0.1ms) rollback transaction
1366
+  (0.1ms) begin transaction
1367
+ ----------------------------------------------
1368
+ BootstrapComponentHelperTest: test_page_header
1369
+ ----------------------------------------------
1370
+  (0.1ms) rollback transaction
1371
+  (0.1ms) begin transaction
1372
+ -------------------------------------------
1373
+ BootstrapComponentHelperTest: test_progress
1374
+ -------------------------------------------
1375
+  (0.1ms) rollback transaction
1376
+  (0.1ms) begin transaction
1377
+ ---------------------------------------------
1378
+ BootstrapComponentHelperTest: test_thumbnails
1379
+ ---------------------------------------------
1380
+  (0.1ms) rollback transaction
1381
+  (0.1ms) begin transaction
1382
+ --------------------------------------
1383
+ BootstrapNotifyHelperTest: test_notify
1384
+ --------------------------------------
1385
+  (0.1ms) rollback transaction
1386
+  (0.1ms) begin transaction
1387
+ ---------------------------------
1388
+ BootstrapTabHelperTest: test_pill
1389
+ ---------------------------------
1390
+  (0.1ms) rollback transaction
1391
+  (0.1ms) begin transaction
1392
+ --------------------------------
1393
+ BootstrapTabHelperTest: test_tab
1394
+ --------------------------------
1395
+  (0.1ms) rollback transaction
1396
+  (0.1ms) begin transaction
1397
+ ------------------------------------
1398
+ BootstrapTableHelperTest: test_table
1399
+ ------------------------------------
1400
+  (0.1ms) rollback transaction
1401
+  (0.4ms) begin transaction
1402
+ -----------------------------------------
1403
+ BootstrapBaseHelperTest: test_c_image_tag
1404
+ -----------------------------------------
1405
+  (0.1ms) rollback transaction
1406
+  (0.1ms) begin transaction
1407
+ ----------------------------------------
1408
+ BootstrapBaseHelperTest: test_glyph_icon
1409
+ ----------------------------------------
1410
+  (0.1ms) rollback transaction
1411
+  (0.1ms) begin transaction
1412
+ ----------------------------------
1413
+ BootstrapBaseHelperTest: test_list
1414
+ ----------------------------------
1415
+  (0.1ms) rollback transaction
1416
+  (0.1ms) begin transaction
1417
+ -----------------------------------------
1418
+ BootstrapBaseHelperTest: test_p_image_tag
1419
+ -----------------------------------------
1420
+  (0.1ms) rollback transaction
1421
+  (0.1ms) begin transaction
1422
+ -----------------------------------------
1423
+ BootstrapBaseHelperTest: test_r_image_tag
1424
+ -----------------------------------------
1425
+  (0.1ms) rollback transaction
1426
+  (0.1ms) begin transaction
1427
+ ---------------------------------
1428
+ BootstrapButtonHelperTest: test_a
1429
+ ---------------------------------
1430
+  (0.1ms) rollback transaction
1431
+  (0.1ms) begin transaction
1432
+ --------------------------------------
1433
+ BootstrapButtonHelperTest: test_button
1434
+ --------------------------------------
1435
+  (0.1ms) rollback transaction
1436
+  (0.1ms) begin transaction
1437
+ -----------------------------------------------
1438
+ BootstrapButtonHelperTest: test_disabled_button
1439
+ -----------------------------------------------
1440
+  (0.1ms) rollback transaction
1441
+  (0.1ms) begin transaction
1442
+ --------------------------------------
1443
+ BootstrapButtonHelperTest: test_submit
1444
+ --------------------------------------
1445
+  (0.1ms) rollback transaction
1446
+  (0.1ms) begin transaction
1447
+ ----------------------------------------
1448
+ BootstrapComponentHelperTest: test_badge
1449
+ ----------------------------------------
1450
+  (0.1ms) rollback transaction
1451
+  (0.1ms) begin transaction
1452
+ -----------------------------------------------
1453
+ BootstrapComponentHelperTest: test_button_group
1454
+ -----------------------------------------------
1455
+  (0.1ms) rollback transaction
1456
+  (0.1ms) begin transaction
1457
+ -------------------------------------------------
1458
+ BootstrapComponentHelperTest: test_button_toolbar
1459
+ -------------------------------------------------
1460
+  (0.1ms) rollback transaction
1461
+  (0.1ms) begin transaction
1462
+ ----------------------------------------
1463
+ BootstrapComponentHelperTest: test_flash
1464
+ ----------------------------------------
1465
+  (0.1ms) rollback transaction
1466
+  (0.1ms) begin transaction
1467
+ --------------------------------------------
1468
+ BootstrapComponentHelperTest: test_hero_unit
1469
+ --------------------------------------------
1470
+  (0.1ms) rollback transaction
1471
+  (0.1ms) begin transaction
1472
+ ----------------------------------------
1473
+ BootstrapComponentHelperTest: test_label
1474
+ ----------------------------------------
1475
+  (0.1ms) rollback transaction
1476
+  (0.1ms) begin transaction
1477
+ ----------------------------------------
1478
+ BootstrapComponentHelperTest: test_modal
1479
+ ----------------------------------------
1480
+  (0.1ms) rollback transaction
1481
+  (0.1ms) begin transaction
1482
+ ------------------------------------------------
1483
+ BootstrapComponentHelperTest: test_modal_trigger
1484
+ ------------------------------------------------
1485
+  (0.1ms) rollback transaction
1486
+  (0.1ms) begin transaction
1487
+ -----------------------------------------------------
1488
+ BootstrapComponentHelperTest: test_modal_with_trigger
1489
+ -----------------------------------------------------
1490
+  (0.1ms) rollback transaction
1491
+  (0.1ms) begin transaction
1492
+ --------------------------------------
1493
+ BootstrapComponentHelperTest: test_nav
1494
+ --------------------------------------
1495
+  (0.1ms) rollback transaction
1496
+  (0.1ms) begin transaction
1497
+ -----------------------------------------
1498
+ BootstrapComponentHelperTest: test_navbar
1499
+ -----------------------------------------
1500
+  (0.1ms) rollback transaction
1501
+  (0.1ms) begin transaction
1502
+ ----------------------------------------------
1503
+ BootstrapComponentHelperTest: test_page_header
1504
+ ----------------------------------------------
1505
+  (0.1ms) rollback transaction
1506
+  (0.1ms) begin transaction
1507
+ -------------------------------------------
1508
+ BootstrapComponentHelperTest: test_progress
1509
+ -------------------------------------------
1510
+  (0.1ms) rollback transaction
1511
+  (0.1ms) begin transaction
1512
+ ---------------------------------------------
1513
+ BootstrapComponentHelperTest: test_thumbnails
1514
+ ---------------------------------------------
1515
+  (0.1ms) rollback transaction
1516
+  (0.1ms) begin transaction
1517
+ --------------------------------------
1518
+ BootstrapNotifyHelperTest: test_notify
1519
+ --------------------------------------
1520
+  (0.1ms) rollback transaction
1521
+  (0.1ms) begin transaction
1522
+ ---------------------------------
1523
+ BootstrapTabHelperTest: test_pill
1524
+ ---------------------------------
1525
+  (0.1ms) rollback transaction
1526
+  (0.1ms) begin transaction
1527
+ --------------------------------
1528
+ BootstrapTabHelperTest: test_tab
1529
+ --------------------------------
1530
+  (0.1ms) rollback transaction
1531
+  (0.1ms) begin transaction
1532
+ ------------------------------------
1533
+ BootstrapTableHelperTest: test_table
1534
+ ------------------------------------
1535
+  (0.1ms) rollback transaction
1536
+  (0.4ms) begin transaction
1537
+ -----------------------------------------
1538
+ BootstrapBaseHelperTest: test_c_image_tag
1539
+ -----------------------------------------
1540
+  (0.1ms) rollback transaction
1541
+  (0.1ms) begin transaction
1542
+ ----------------------------------------
1543
+ BootstrapBaseHelperTest: test_glyph_icon
1544
+ ----------------------------------------
1545
+  (0.1ms) rollback transaction
1546
+  (0.1ms) begin transaction
1547
+ ----------------------------------
1548
+ BootstrapBaseHelperTest: test_list
1549
+ ----------------------------------
1550
+  (0.1ms) rollback transaction
1551
+  (0.1ms) begin transaction
1552
+ -----------------------------------------
1553
+ BootstrapBaseHelperTest: test_p_image_tag
1554
+ -----------------------------------------
1555
+  (0.1ms) rollback transaction
1556
+  (0.1ms) begin transaction
1557
+ -----------------------------------------
1558
+ BootstrapBaseHelperTest: test_r_image_tag
1559
+ -----------------------------------------
1560
+  (0.1ms) rollback transaction
1561
+  (0.1ms) begin transaction
1562
+ ---------------------------------
1563
+ BootstrapButtonHelperTest: test_a
1564
+ ---------------------------------
1565
+  (0.1ms) rollback transaction
1566
+  (0.1ms) begin transaction
1567
+ --------------------------------------
1568
+ BootstrapButtonHelperTest: test_button
1569
+ --------------------------------------
1570
+  (0.1ms) rollback transaction
1571
+  (0.1ms) begin transaction
1572
+ -----------------------------------------------
1573
+ BootstrapButtonHelperTest: test_disabled_button
1574
+ -----------------------------------------------
1575
+  (0.1ms) rollback transaction
1576
+  (0.1ms) begin transaction
1577
+ --------------------------------------
1578
+ BootstrapButtonHelperTest: test_submit
1579
+ --------------------------------------
1580
+  (0.1ms) rollback transaction
1581
+  (0.1ms) begin transaction
1582
+ ----------------------------------------
1583
+ BootstrapComponentHelperTest: test_badge
1584
+ ----------------------------------------
1585
+  (0.1ms) rollback transaction
1586
+  (0.1ms) begin transaction
1587
+ -----------------------------------------------
1588
+ BootstrapComponentHelperTest: test_button_group
1589
+ -----------------------------------------------
1590
+  (0.1ms) rollback transaction
1591
+  (0.1ms) begin transaction
1592
+ -------------------------------------------------
1593
+ BootstrapComponentHelperTest: test_button_toolbar
1594
+ -------------------------------------------------
1595
+  (0.1ms) rollback transaction
1596
+  (0.1ms) begin transaction
1597
+ ----------------------------------------
1598
+ BootstrapComponentHelperTest: test_flash
1599
+ ----------------------------------------
1600
+  (0.1ms) rollback transaction
1601
+  (0.1ms) begin transaction
1602
+ --------------------------------------------
1603
+ BootstrapComponentHelperTest: test_hero_unit
1604
+ --------------------------------------------
1605
+  (0.1ms) rollback transaction
1606
+  (0.1ms) begin transaction
1607
+ ----------------------------------------
1608
+ BootstrapComponentHelperTest: test_label
1609
+ ----------------------------------------
1610
+  (0.1ms) rollback transaction
1611
+  (0.1ms) begin transaction
1612
+ ----------------------------------------
1613
+ BootstrapComponentHelperTest: test_modal
1614
+ ----------------------------------------
1615
+  (0.1ms) rollback transaction
1616
+  (0.1ms) begin transaction
1617
+ ------------------------------------------------
1618
+ BootstrapComponentHelperTest: test_modal_trigger
1619
+ ------------------------------------------------
1620
+  (0.1ms) rollback transaction
1621
+  (0.1ms) begin transaction
1622
+ -----------------------------------------------------
1623
+ BootstrapComponentHelperTest: test_modal_with_trigger
1624
+ -----------------------------------------------------
1625
+  (0.1ms) rollback transaction
1626
+  (0.1ms) begin transaction
1627
+ --------------------------------------
1628
+ BootstrapComponentHelperTest: test_nav
1629
+ --------------------------------------
1630
+  (0.1ms) rollback transaction
1631
+  (0.1ms) begin transaction
1632
+ -----------------------------------------
1633
+ BootstrapComponentHelperTest: test_navbar
1634
+ -----------------------------------------
1635
+  (0.1ms) rollback transaction
1636
+  (0.1ms) begin transaction
1637
+ ----------------------------------------------
1638
+ BootstrapComponentHelperTest: test_page_header
1639
+ ----------------------------------------------
1640
+  (0.1ms) rollback transaction
1641
+  (0.1ms) begin transaction
1642
+ -------------------------------------------
1643
+ BootstrapComponentHelperTest: test_progress
1644
+ -------------------------------------------
1645
+  (0.1ms) rollback transaction
1646
+  (0.1ms) begin transaction
1647
+ ---------------------------------------------
1648
+ BootstrapComponentHelperTest: test_thumbnails
1649
+ ---------------------------------------------
1650
+  (0.1ms) rollback transaction
1651
+  (0.1ms) begin transaction
1652
+ --------------------------------------
1653
+ BootstrapNotifyHelperTest: test_notify
1654
+ --------------------------------------
1655
+  (0.1ms) rollback transaction
1656
+  (0.1ms) begin transaction
1657
+ ---------------------------------
1658
+ BootstrapTabHelperTest: test_pill
1659
+ ---------------------------------
1660
+  (0.1ms) rollback transaction
1661
+  (0.1ms) begin transaction
1662
+ --------------------------------
1663
+ BootstrapTabHelperTest: test_tab
1664
+ --------------------------------
1665
+  (0.1ms) rollback transaction
1666
+  (0.1ms) begin transaction
1667
+ ------------------------------------
1668
+ BootstrapTableHelperTest: test_table
1669
+ ------------------------------------
1670
+  (0.1ms) rollback transaction
1671
+  (0.5ms) begin transaction
1672
+ -----------------------------------------
1673
+ BootstrapBaseHelperTest: test_c_image_tag
1674
+ -----------------------------------------
1675
+  (0.1ms) rollback transaction
1676
+  (0.1ms) begin transaction
1677
+ ----------------------------------------
1678
+ BootstrapBaseHelperTest: test_glyph_icon
1679
+ ----------------------------------------
1680
+  (0.1ms) rollback transaction
1681
+  (0.1ms) begin transaction
1682
+ ----------------------------------
1683
+ BootstrapBaseHelperTest: test_list
1684
+ ----------------------------------
1685
+  (0.1ms) rollback transaction
1686
+  (0.1ms) begin transaction
1687
+ -----------------------------------------
1688
+ BootstrapBaseHelperTest: test_p_image_tag
1689
+ -----------------------------------------
1690
+  (0.1ms) rollback transaction
1691
+  (0.1ms) begin transaction
1692
+ -----------------------------------------
1693
+ BootstrapBaseHelperTest: test_r_image_tag
1694
+ -----------------------------------------
1695
+  (0.1ms) rollback transaction
1696
+  (0.1ms) begin transaction
1697
+ ---------------------------------
1698
+ BootstrapButtonHelperTest: test_a
1699
+ ---------------------------------
1700
+  (0.1ms) rollback transaction
1701
+  (0.1ms) begin transaction
1702
+ --------------------------------------
1703
+ BootstrapButtonHelperTest: test_button
1704
+ --------------------------------------
1705
+  (0.1ms) rollback transaction
1706
+  (0.1ms) begin transaction
1707
+ -----------------------------------------------
1708
+ BootstrapButtonHelperTest: test_disabled_button
1709
+ -----------------------------------------------
1710
+  (0.1ms) rollback transaction
1711
+  (0.1ms) begin transaction
1712
+ --------------------------------------
1713
+ BootstrapButtonHelperTest: test_submit
1714
+ --------------------------------------
1715
+  (0.2ms) rollback transaction
1716
+  (0.1ms) begin transaction
1717
+ ----------------------------------------
1718
+ BootstrapComponentHelperTest: test_badge
1719
+ ----------------------------------------
1720
+  (0.1ms) rollback transaction
1721
+  (0.1ms) begin transaction
1722
+ -----------------------------------------------
1723
+ BootstrapComponentHelperTest: test_button_group
1724
+ -----------------------------------------------
1725
+  (0.1ms) rollback transaction
1726
+  (0.1ms) begin transaction
1727
+ -------------------------------------------------
1728
+ BootstrapComponentHelperTest: test_button_toolbar
1729
+ -------------------------------------------------
1730
+  (0.1ms) rollback transaction
1731
+  (0.1ms) begin transaction
1732
+ ----------------------------------------
1733
+ BootstrapComponentHelperTest: test_flash
1734
+ ----------------------------------------
1735
+  (0.1ms) rollback transaction
1736
+  (0.1ms) begin transaction
1737
+ --------------------------------------------
1738
+ BootstrapComponentHelperTest: test_hero_unit
1739
+ --------------------------------------------
1740
+  (0.1ms) rollback transaction
1741
+  (0.1ms) begin transaction
1742
+ ----------------------------------------
1743
+ BootstrapComponentHelperTest: test_label
1744
+ ----------------------------------------
1745
+  (0.1ms) rollback transaction
1746
+  (0.1ms) begin transaction
1747
+ ----------------------------------------
1748
+ BootstrapComponentHelperTest: test_modal
1749
+ ----------------------------------------
1750
+  (0.1ms) rollback transaction
1751
+  (0.1ms) begin transaction
1752
+ ------------------------------------------------
1753
+ BootstrapComponentHelperTest: test_modal_trigger
1754
+ ------------------------------------------------
1755
+  (0.1ms) rollback transaction
1756
+  (0.1ms) begin transaction
1757
+ -----------------------------------------------------
1758
+ BootstrapComponentHelperTest: test_modal_with_trigger
1759
+ -----------------------------------------------------
1760
+  (0.1ms) rollback transaction
1761
+  (0.1ms) begin transaction
1762
+ --------------------------------------
1763
+ BootstrapComponentHelperTest: test_nav
1764
+ --------------------------------------
1765
+  (0.1ms) rollback transaction
1766
+  (0.1ms) begin transaction
1767
+ -----------------------------------------
1768
+ BootstrapComponentHelperTest: test_navbar
1769
+ -----------------------------------------
1770
+  (0.1ms) rollback transaction
1771
+  (0.1ms) begin transaction
1772
+ ----------------------------------------------
1773
+ BootstrapComponentHelperTest: test_page_header
1774
+ ----------------------------------------------
1775
+  (0.1ms) rollback transaction
1776
+  (0.1ms) begin transaction
1777
+ -------------------------------------------
1778
+ BootstrapComponentHelperTest: test_progress
1779
+ -------------------------------------------
1780
+  (0.1ms) rollback transaction
1781
+  (0.1ms) begin transaction
1782
+ ---------------------------------------------
1783
+ BootstrapComponentHelperTest: test_thumbnails
1784
+ ---------------------------------------------
1785
+  (0.1ms) rollback transaction
1786
+  (0.1ms) begin transaction
1787
+ --------------------------------------
1788
+ BootstrapNotifyHelperTest: test_notify
1789
+ --------------------------------------
1790
+  (0.1ms) rollback transaction
1791
+  (0.1ms) begin transaction
1792
+ ---------------------------------
1793
+ BootstrapTabHelperTest: test_pill
1794
+ ---------------------------------
1795
+  (0.1ms) rollback transaction
1796
+  (0.1ms) begin transaction
1797
+ --------------------------------
1798
+ BootstrapTabHelperTest: test_tab
1799
+ --------------------------------
1800
+  (0.1ms) rollback transaction
1801
+  (0.1ms) begin transaction
1802
+ ------------------------------------
1803
+ BootstrapTableHelperTest: test_table
1804
+ ------------------------------------
1805
+  (0.1ms) rollback transaction
1806
+  (0.4ms) begin transaction
1807
+ -----------------------------------------
1808
+ BootstrapBaseHelperTest: test_c_image_tag
1809
+ -----------------------------------------
1810
+  (0.1ms) rollback transaction
1811
+  (0.1ms) begin transaction
1812
+ ----------------------------------------
1813
+ BootstrapBaseHelperTest: test_glyph_icon
1814
+ ----------------------------------------
1815
+  (0.1ms) rollback transaction
1816
+  (0.1ms) begin transaction
1817
+ ----------------------------------
1818
+ BootstrapBaseHelperTest: test_list
1819
+ ----------------------------------
1820
+  (0.1ms) rollback transaction
1821
+  (0.1ms) begin transaction
1822
+ -----------------------------------------
1823
+ BootstrapBaseHelperTest: test_p_image_tag
1824
+ -----------------------------------------
1825
+  (0.1ms) rollback transaction
1826
+  (0.1ms) begin transaction
1827
+ -----------------------------------------
1828
+ BootstrapBaseHelperTest: test_r_image_tag
1829
+ -----------------------------------------
1830
+  (0.1ms) rollback transaction
1831
+  (0.1ms) begin transaction
1832
+ ---------------------------------
1833
+ BootstrapButtonHelperTest: test_a
1834
+ ---------------------------------
1835
+  (0.1ms) rollback transaction
1836
+  (0.1ms) begin transaction
1837
+ --------------------------------------
1838
+ BootstrapButtonHelperTest: test_button
1839
+ --------------------------------------
1840
+  (0.1ms) rollback transaction
1841
+  (0.1ms) begin transaction
1842
+ -----------------------------------------------
1843
+ BootstrapButtonHelperTest: test_disabled_button
1844
+ -----------------------------------------------
1845
+  (0.1ms) rollback transaction
1846
+  (0.1ms) begin transaction
1847
+ --------------------------------------
1848
+ BootstrapButtonHelperTest: test_submit
1849
+ --------------------------------------
1850
+  (0.1ms) rollback transaction
1851
+  (0.1ms) begin transaction
1852
+ ----------------------------------------
1853
+ BootstrapComponentHelperTest: test_badge
1854
+ ----------------------------------------
1855
+  (0.1ms) rollback transaction
1856
+  (0.1ms) begin transaction
1857
+ -----------------------------------------------
1858
+ BootstrapComponentHelperTest: test_button_group
1859
+ -----------------------------------------------
1860
+  (0.1ms) rollback transaction
1861
+  (0.1ms) begin transaction
1862
+ -------------------------------------------------
1863
+ BootstrapComponentHelperTest: test_button_toolbar
1864
+ -------------------------------------------------
1865
+  (0.1ms) rollback transaction
1866
+  (0.1ms) begin transaction
1867
+ ----------------------------------------
1868
+ BootstrapComponentHelperTest: test_flash
1869
+ ----------------------------------------
1870
+  (0.1ms) rollback transaction
1871
+  (0.1ms) begin transaction
1872
+ --------------------------------------------
1873
+ BootstrapComponentHelperTest: test_hero_unit
1874
+ --------------------------------------------
1875
+  (0.1ms) rollback transaction
1876
+  (0.1ms) begin transaction
1877
+ ----------------------------------------
1878
+ BootstrapComponentHelperTest: test_label
1879
+ ----------------------------------------
1880
+  (0.1ms) rollback transaction
1881
+  (0.1ms) begin transaction
1882
+ ----------------------------------------
1883
+ BootstrapComponentHelperTest: test_modal
1884
+ ----------------------------------------
1885
+  (0.1ms) rollback transaction
1886
+  (0.1ms) begin transaction
1887
+ ------------------------------------------------
1888
+ BootstrapComponentHelperTest: test_modal_trigger
1889
+ ------------------------------------------------
1890
+  (0.1ms) rollback transaction
1891
+  (0.1ms) begin transaction
1892
+ -----------------------------------------------------
1893
+ BootstrapComponentHelperTest: test_modal_with_trigger
1894
+ -----------------------------------------------------
1895
+  (0.1ms) rollback transaction
1896
+  (0.1ms) begin transaction
1897
+ --------------------------------------
1898
+ BootstrapComponentHelperTest: test_nav
1899
+ --------------------------------------
1900
+  (0.1ms) rollback transaction
1901
+  (0.1ms) begin transaction
1902
+ -----------------------------------------
1903
+ BootstrapComponentHelperTest: test_navbar
1904
+ -----------------------------------------
1905
+  (0.1ms) rollback transaction
1906
+  (0.1ms) begin transaction
1907
+ ----------------------------------------------
1908
+ BootstrapComponentHelperTest: test_page_header
1909
+ ----------------------------------------------
1910
+  (0.1ms) rollback transaction
1911
+  (0.1ms) begin transaction
1912
+ -------------------------------------------
1913
+ BootstrapComponentHelperTest: test_progress
1914
+ -------------------------------------------
1915
+  (0.1ms) rollback transaction
1916
+  (0.1ms) begin transaction
1917
+ ---------------------------------------------
1918
+ BootstrapComponentHelperTest: test_thumbnails
1919
+ ---------------------------------------------
1920
+  (0.1ms) rollback transaction
1921
+  (0.1ms) begin transaction
1922
+ --------------------------------------
1923
+ BootstrapNotifyHelperTest: test_notify
1924
+ --------------------------------------
1925
+  (0.1ms) rollback transaction
1926
+  (0.1ms) begin transaction
1927
+ ---------------------------------
1928
+ BootstrapTabHelperTest: test_pill
1929
+ ---------------------------------
1930
+  (0.1ms) rollback transaction
1931
+  (0.1ms) begin transaction
1932
+ --------------------------------
1933
+ BootstrapTabHelperTest: test_tab
1934
+ --------------------------------
1935
+  (0.1ms) rollback transaction
1936
+  (0.1ms) begin transaction
1937
+ ------------------------------------
1938
+ BootstrapTableHelperTest: test_table
1939
+ ------------------------------------
1940
+  (0.1ms) rollback transaction
1941
+  (0.4ms) begin transaction
1942
+ -----------------------------------------
1943
+ BootstrapBaseHelperTest: test_c_image_tag
1944
+ -----------------------------------------
1945
+  (0.1ms) rollback transaction
1946
+  (0.1ms) begin transaction
1947
+ ----------------------------------------
1948
+ BootstrapBaseHelperTest: test_glyph_icon
1949
+ ----------------------------------------
1950
+  (0.1ms) rollback transaction
1951
+  (0.1ms) begin transaction
1952
+ ----------------------------------
1953
+ BootstrapBaseHelperTest: test_list
1954
+ ----------------------------------
1955
+  (0.1ms) rollback transaction
1956
+  (0.1ms) begin transaction
1957
+ -----------------------------------------
1958
+ BootstrapBaseHelperTest: test_p_image_tag
1959
+ -----------------------------------------
1960
+  (0.1ms) rollback transaction
1961
+  (0.1ms) begin transaction
1962
+ -----------------------------------------
1963
+ BootstrapBaseHelperTest: test_r_image_tag
1964
+ -----------------------------------------
1965
+  (0.1ms) rollback transaction
1966
+  (0.1ms) begin transaction
1967
+ ---------------------------------
1968
+ BootstrapButtonHelperTest: test_a
1969
+ ---------------------------------
1970
+  (0.1ms) rollback transaction
1971
+  (0.1ms) begin transaction
1972
+ --------------------------------------
1973
+ BootstrapButtonHelperTest: test_button
1974
+ --------------------------------------
1975
+  (0.1ms) rollback transaction
1976
+  (0.1ms) begin transaction
1977
+ -----------------------------------------------
1978
+ BootstrapButtonHelperTest: test_disabled_button
1979
+ -----------------------------------------------
1980
+  (0.3ms) rollback transaction
1981
+  (0.1ms) begin transaction
1982
+ --------------------------------------
1983
+ BootstrapButtonHelperTest: test_submit
1984
+ --------------------------------------
1985
+  (0.1ms) rollback transaction
1986
+  (0.1ms) begin transaction
1987
+ ----------------------------------------
1988
+ BootstrapComponentHelperTest: test_badge
1989
+ ----------------------------------------
1990
+  (0.1ms) rollback transaction
1991
+  (0.1ms) begin transaction
1992
+ -----------------------------------------------
1993
+ BootstrapComponentHelperTest: test_button_group
1994
+ -----------------------------------------------
1995
+  (0.1ms) rollback transaction
1996
+  (0.1ms) begin transaction
1997
+ -------------------------------------------------
1998
+ BootstrapComponentHelperTest: test_button_toolbar
1999
+ -------------------------------------------------
2000
+  (0.1ms) rollback transaction
2001
+  (0.1ms) begin transaction
2002
+ ----------------------------------------
2003
+ BootstrapComponentHelperTest: test_flash
2004
+ ----------------------------------------
2005
+  (0.1ms) rollback transaction
2006
+  (0.1ms) begin transaction
2007
+ --------------------------------------------
2008
+ BootstrapComponentHelperTest: test_hero_unit
2009
+ --------------------------------------------
2010
+  (0.1ms) rollback transaction
2011
+  (0.1ms) begin transaction
2012
+ ----------------------------------------
2013
+ BootstrapComponentHelperTest: test_label
2014
+ ----------------------------------------
2015
+  (0.1ms) rollback transaction
2016
+  (0.1ms) begin transaction
2017
+ ----------------------------------------
2018
+ BootstrapComponentHelperTest: test_modal
2019
+ ----------------------------------------
2020
+  (0.1ms) rollback transaction
2021
+  (0.1ms) begin transaction
2022
+ ------------------------------------------------
2023
+ BootstrapComponentHelperTest: test_modal_trigger
2024
+ ------------------------------------------------
2025
+  (0.1ms) rollback transaction
2026
+  (0.1ms) begin transaction
2027
+ -----------------------------------------------------
2028
+ BootstrapComponentHelperTest: test_modal_with_trigger
2029
+ -----------------------------------------------------
2030
+  (0.1ms) rollback transaction
2031
+  (0.1ms) begin transaction
2032
+ --------------------------------------
2033
+ BootstrapComponentHelperTest: test_nav
2034
+ --------------------------------------
2035
+  (0.1ms) rollback transaction
2036
+  (0.1ms) begin transaction
2037
+ -----------------------------------------
2038
+ BootstrapComponentHelperTest: test_navbar
2039
+ -----------------------------------------
2040
+  (0.1ms) rollback transaction
2041
+  (0.1ms) begin transaction
2042
+ ----------------------------------------------
2043
+ BootstrapComponentHelperTest: test_page_header
2044
+ ----------------------------------------------
2045
+  (0.1ms) rollback transaction
2046
+  (0.1ms) begin transaction
2047
+ -------------------------------------------
2048
+ BootstrapComponentHelperTest: test_progress
2049
+ -------------------------------------------
2050
+  (0.1ms) rollback transaction
2051
+  (0.1ms) begin transaction
2052
+ ---------------------------------------------
2053
+ BootstrapComponentHelperTest: test_thumbnails
2054
+ ---------------------------------------------
2055
+  (0.1ms) rollback transaction
2056
+  (0.1ms) begin transaction
2057
+ --------------------------------------
2058
+ BootstrapNotifyHelperTest: test_notify
2059
+ --------------------------------------
2060
+  (0.1ms) rollback transaction
2061
+  (0.1ms) begin transaction
2062
+ ---------------------------------
2063
+ BootstrapTabHelperTest: test_pill
2064
+ ---------------------------------
2065
+  (0.1ms) rollback transaction
2066
+  (0.1ms) begin transaction
2067
+ --------------------------------
2068
+ BootstrapTabHelperTest: test_tab
2069
+ --------------------------------
2070
+  (0.1ms) rollback transaction
2071
+  (0.1ms) begin transaction
2072
+ ------------------------------------
2073
+ BootstrapTableHelperTest: test_table
2074
+ ------------------------------------
2075
+  (0.1ms) rollback transaction
2076
+  (0.4ms) begin transaction
2077
+ -----------------------------------------
2078
+ BootstrapBaseHelperTest: test_c_image_tag
2079
+ -----------------------------------------
2080
+  (0.1ms) rollback transaction
2081
+  (0.1ms) begin transaction
2082
+ ----------------------------------------
2083
+ BootstrapBaseHelperTest: test_glyph_icon
2084
+ ----------------------------------------
2085
+  (0.1ms) rollback transaction
2086
+  (0.1ms) begin transaction
2087
+ ----------------------------------
2088
+ BootstrapBaseHelperTest: test_list
2089
+ ----------------------------------
2090
+  (0.1ms) rollback transaction
2091
+  (0.1ms) begin transaction
2092
+ -----------------------------------------
2093
+ BootstrapBaseHelperTest: test_p_image_tag
2094
+ -----------------------------------------
2095
+  (0.1ms) rollback transaction
2096
+  (0.1ms) begin transaction
2097
+ -----------------------------------------
2098
+ BootstrapBaseHelperTest: test_r_image_tag
2099
+ -----------------------------------------
2100
+  (0.1ms) rollback transaction
2101
+  (0.1ms) begin transaction
2102
+ ---------------------------------
2103
+ BootstrapButtonHelperTest: test_a
2104
+ ---------------------------------
2105
+  (0.1ms) rollback transaction
2106
+  (0.1ms) begin transaction
2107
+ --------------------------------------
2108
+ BootstrapButtonHelperTest: test_button
2109
+ --------------------------------------
2110
+  (0.1ms) rollback transaction
2111
+  (0.1ms) begin transaction
2112
+ -----------------------------------------------
2113
+ BootstrapButtonHelperTest: test_disabled_button
2114
+ -----------------------------------------------
2115
+  (0.1ms) rollback transaction
2116
+  (0.1ms) begin transaction
2117
+ --------------------------------------
2118
+ BootstrapButtonHelperTest: test_submit
2119
+ --------------------------------------
2120
+  (0.1ms) rollback transaction
2121
+  (0.1ms) begin transaction
2122
+ ----------------------------------------
2123
+ BootstrapComponentHelperTest: test_badge
2124
+ ----------------------------------------
2125
+  (0.1ms) rollback transaction
2126
+  (0.1ms) begin transaction
2127
+ -----------------------------------------------
2128
+ BootstrapComponentHelperTest: test_button_group
2129
+ -----------------------------------------------
2130
+  (0.1ms) rollback transaction
2131
+  (0.1ms) begin transaction
2132
+ -------------------------------------------------
2133
+ BootstrapComponentHelperTest: test_button_toolbar
2134
+ -------------------------------------------------
2135
+  (0.1ms) rollback transaction
2136
+  (0.1ms) begin transaction
2137
+ ----------------------------------------
2138
+ BootstrapComponentHelperTest: test_flash
2139
+ ----------------------------------------
2140
+  (0.1ms) rollback transaction
2141
+  (0.1ms) begin transaction
2142
+ --------------------------------------------
2143
+ BootstrapComponentHelperTest: test_hero_unit
2144
+ --------------------------------------------
2145
+  (0.1ms) rollback transaction
2146
+  (0.1ms) begin transaction
2147
+ ----------------------------------------
2148
+ BootstrapComponentHelperTest: test_label
2149
+ ----------------------------------------
2150
+  (0.1ms) rollback transaction
2151
+  (0.1ms) begin transaction
2152
+ ----------------------------------------
2153
+ BootstrapComponentHelperTest: test_modal
2154
+ ----------------------------------------
2155
+  (0.1ms) rollback transaction
2156
+  (0.3ms) begin transaction
2157
+ ------------------------------------------------
2158
+ BootstrapComponentHelperTest: test_modal_trigger
2159
+ ------------------------------------------------
2160
+  (0.1ms) rollback transaction
2161
+  (0.1ms) begin transaction
2162
+ -----------------------------------------------------
2163
+ BootstrapComponentHelperTest: test_modal_with_trigger
2164
+ -----------------------------------------------------
2165
+  (0.1ms) rollback transaction
2166
+  (0.1ms) begin transaction
2167
+ --------------------------------------
2168
+ BootstrapComponentHelperTest: test_nav
2169
+ --------------------------------------
2170
+  (0.1ms) rollback transaction
2171
+  (0.1ms) begin transaction
2172
+ -----------------------------------------
2173
+ BootstrapComponentHelperTest: test_navbar
2174
+ -----------------------------------------
2175
+  (0.1ms) rollback transaction
2176
+  (0.1ms) begin transaction
2177
+ ----------------------------------------------
2178
+ BootstrapComponentHelperTest: test_page_header
2179
+ ----------------------------------------------
2180
+  (0.1ms) rollback transaction
2181
+  (0.1ms) begin transaction
2182
+ -------------------------------------------
2183
+ BootstrapComponentHelperTest: test_progress
2184
+ -------------------------------------------
2185
+  (0.1ms) rollback transaction
2186
+  (0.1ms) begin transaction
2187
+ ---------------------------------------------
2188
+ BootstrapComponentHelperTest: test_thumbnails
2189
+ ---------------------------------------------
2190
+  (0.1ms) rollback transaction
2191
+  (0.1ms) begin transaction
2192
+ --------------------------------------
2193
+ BootstrapNotifyHelperTest: test_notify
2194
+ --------------------------------------
2195
+  (0.1ms) rollback transaction
2196
+  (0.1ms) begin transaction
2197
+ ---------------------------------
2198
+ BootstrapTabHelperTest: test_pill
2199
+ ---------------------------------
2200
+  (0.1ms) rollback transaction
2201
+  (0.1ms) begin transaction
2202
+ --------------------------------
2203
+ BootstrapTabHelperTest: test_tab
2204
+ --------------------------------
2205
+  (0.1ms) rollback transaction
2206
+  (0.1ms) begin transaction
2207
+ ------------------------------------
2208
+ BootstrapTableHelperTest: test_table
2209
+ ------------------------------------
2210
+  (0.1ms) rollback transaction
2211
+  (0.4ms) begin transaction
2212
+ -----------------------------------------
2213
+ BootstrapBaseHelperTest: test_c_image_tag
2214
+ -----------------------------------------
2215
+  (0.1ms) rollback transaction
2216
+  (0.1ms) begin transaction
2217
+ ----------------------------------------
2218
+ BootstrapBaseHelperTest: test_glyph_icon
2219
+ ----------------------------------------
2220
+  (0.1ms) rollback transaction
2221
+  (0.1ms) begin transaction
2222
+ ----------------------------------
2223
+ BootstrapBaseHelperTest: test_list
2224
+ ----------------------------------
2225
+  (0.1ms) rollback transaction
2226
+  (0.1ms) begin transaction
2227
+ -----------------------------------------
2228
+ BootstrapBaseHelperTest: test_p_image_tag
2229
+ -----------------------------------------
2230
+  (0.1ms) rollback transaction
2231
+  (0.1ms) begin transaction
2232
+ -----------------------------------------
2233
+ BootstrapBaseHelperTest: test_r_image_tag
2234
+ -----------------------------------------
2235
+  (0.1ms) rollback transaction
2236
+  (0.1ms) begin transaction
2237
+ ---------------------------------
2238
+ BootstrapButtonHelperTest: test_a
2239
+ ---------------------------------
2240
+  (0.1ms) rollback transaction
2241
+  (0.1ms) begin transaction
2242
+ --------------------------------------
2243
+ BootstrapButtonHelperTest: test_button
2244
+ --------------------------------------
2245
+  (0.1ms) rollback transaction
2246
+  (0.1ms) begin transaction
2247
+ -----------------------------------------------
2248
+ BootstrapButtonHelperTest: test_disabled_button
2249
+ -----------------------------------------------
2250
+  (0.1ms) rollback transaction
2251
+  (0.1ms) begin transaction
2252
+ --------------------------------------
2253
+ BootstrapButtonHelperTest: test_submit
2254
+ --------------------------------------
2255
+  (0.1ms) rollback transaction
2256
+  (0.1ms) begin transaction
2257
+ ----------------------------------------
2258
+ BootstrapComponentHelperTest: test_badge
2259
+ ----------------------------------------
2260
+  (0.1ms) rollback transaction
2261
+  (0.1ms) begin transaction
2262
+ -----------------------------------------------
2263
+ BootstrapComponentHelperTest: test_button_group
2264
+ -----------------------------------------------
2265
+  (0.1ms) rollback transaction
2266
+  (0.1ms) begin transaction
2267
+ -------------------------------------------------
2268
+ BootstrapComponentHelperTest: test_button_toolbar
2269
+ -------------------------------------------------
2270
+  (0.1ms) rollback transaction
2271
+  (0.1ms) begin transaction
2272
+ ----------------------------------------
2273
+ BootstrapComponentHelperTest: test_flash
2274
+ ----------------------------------------
2275
+  (0.1ms) rollback transaction
2276
+  (0.1ms) begin transaction
2277
+ --------------------------------------------
2278
+ BootstrapComponentHelperTest: test_hero_unit
2279
+ --------------------------------------------
2280
+  (0.1ms) rollback transaction
2281
+  (0.1ms) begin transaction
2282
+ ----------------------------------------
2283
+ BootstrapComponentHelperTest: test_label
2284
+ ----------------------------------------
2285
+  (0.1ms) rollback transaction
2286
+  (0.1ms) begin transaction
2287
+ ----------------------------------------
2288
+ BootstrapComponentHelperTest: test_modal
2289
+ ----------------------------------------
2290
+  (0.1ms) rollback transaction
2291
+  (0.1ms) begin transaction
2292
+ ------------------------------------------------
2293
+ BootstrapComponentHelperTest: test_modal_trigger
2294
+ ------------------------------------------------
2295
+  (0.1ms) rollback transaction
2296
+  (0.1ms) begin transaction
2297
+ -----------------------------------------------------
2298
+ BootstrapComponentHelperTest: test_modal_with_trigger
2299
+ -----------------------------------------------------
2300
+  (0.1ms) rollback transaction
2301
+  (0.1ms) begin transaction
2302
+ --------------------------------------
2303
+ BootstrapComponentHelperTest: test_nav
2304
+ --------------------------------------
2305
+  (0.1ms) rollback transaction
2306
+  (0.1ms) begin transaction
2307
+ -----------------------------------------
2308
+ BootstrapComponentHelperTest: test_navbar
2309
+ -----------------------------------------
2310
+  (0.1ms) rollback transaction
2311
+  (0.1ms) begin transaction
2312
+ ----------------------------------------------
2313
+ BootstrapComponentHelperTest: test_page_header
2314
+ ----------------------------------------------
2315
+  (0.1ms) rollback transaction
2316
+  (0.1ms) begin transaction
2317
+ -------------------------------------------
2318
+ BootstrapComponentHelperTest: test_progress
2319
+ -------------------------------------------
2320
+  (0.1ms) rollback transaction
2321
+  (0.1ms) begin transaction
2322
+ ---------------------------------------------
2323
+ BootstrapComponentHelperTest: test_thumbnails
2324
+ ---------------------------------------------
2325
+  (0.1ms) rollback transaction
2326
+  (0.1ms) begin transaction
2327
+ --------------------------------------
2328
+ BootstrapNotifyHelperTest: test_notify
2329
+ --------------------------------------
2330
+  (0.1ms) rollback transaction
2331
+  (0.1ms) begin transaction
2332
+ ---------------------------------
2333
+ BootstrapTabHelperTest: test_pill
2334
+ ---------------------------------
2335
+  (0.1ms) rollback transaction
2336
+  (0.1ms) begin transaction
2337
+ --------------------------------
2338
+ BootstrapTabHelperTest: test_tab
2339
+ --------------------------------
2340
+  (0.1ms) rollback transaction
2341
+  (0.1ms) begin transaction
2342
+ ------------------------------------
2343
+ BootstrapTableHelperTest: test_table
2344
+ ------------------------------------
2345
+  (0.1ms) rollback transaction
2346
+  (0.4ms) begin transaction
2347
+ -----------------------------------------
2348
+ BootstrapBaseHelperTest: test_c_image_tag
2349
+ -----------------------------------------
2350
+  (0.1ms) rollback transaction
2351
+  (0.1ms) begin transaction
2352
+ ----------------------------------------
2353
+ BootstrapBaseHelperTest: test_glyph_icon
2354
+ ----------------------------------------
2355
+  (0.1ms) rollback transaction
2356
+  (0.1ms) begin transaction
2357
+ ----------------------------------
2358
+ BootstrapBaseHelperTest: test_list
2359
+ ----------------------------------
2360
+  (0.1ms) rollback transaction
2361
+  (0.1ms) begin transaction
2362
+ -----------------------------------------
2363
+ BootstrapBaseHelperTest: test_p_image_tag
2364
+ -----------------------------------------
2365
+  (0.1ms) rollback transaction
2366
+  (0.1ms) begin transaction
2367
+ -----------------------------------------
2368
+ BootstrapBaseHelperTest: test_r_image_tag
2369
+ -----------------------------------------
2370
+  (0.1ms) rollback transaction
2371
+  (0.1ms) begin transaction
2372
+ ---------------------------------
2373
+ BootstrapButtonHelperTest: test_a
2374
+ ---------------------------------
2375
+  (0.1ms) rollback transaction
2376
+  (0.1ms) begin transaction
2377
+ --------------------------------------
2378
+ BootstrapButtonHelperTest: test_button
2379
+ --------------------------------------
2380
+  (0.1ms) rollback transaction
2381
+  (0.1ms) begin transaction
2382
+ -----------------------------------------------
2383
+ BootstrapButtonHelperTest: test_disabled_button
2384
+ -----------------------------------------------
2385
+  (0.1ms) rollback transaction
2386
+  (0.1ms) begin transaction
2387
+ --------------------------------------
2388
+ BootstrapButtonHelperTest: test_submit
2389
+ --------------------------------------
2390
+  (0.1ms) rollback transaction
2391
+  (0.1ms) begin transaction
2392
+ ----------------------------------------
2393
+ BootstrapComponentHelperTest: test_badge
2394
+ ----------------------------------------
2395
+  (0.1ms) rollback transaction
2396
+  (0.1ms) begin transaction
2397
+ -----------------------------------------------
2398
+ BootstrapComponentHelperTest: test_button_group
2399
+ -----------------------------------------------
2400
+  (0.1ms) rollback transaction
2401
+  (0.1ms) begin transaction
2402
+ -------------------------------------------------
2403
+ BootstrapComponentHelperTest: test_button_toolbar
2404
+ -------------------------------------------------
2405
+  (0.1ms) rollback transaction
2406
+  (0.1ms) begin transaction
2407
+ ----------------------------------------
2408
+ BootstrapComponentHelperTest: test_flash
2409
+ ----------------------------------------
2410
+  (0.1ms) rollback transaction
2411
+  (0.1ms) begin transaction
2412
+ --------------------------------------------
2413
+ BootstrapComponentHelperTest: test_hero_unit
2414
+ --------------------------------------------
2415
+  (0.1ms) rollback transaction
2416
+  (0.1ms) begin transaction
2417
+ ----------------------------------------
2418
+ BootstrapComponentHelperTest: test_label
2419
+ ----------------------------------------
2420
+  (0.1ms) rollback transaction
2421
+  (0.1ms) begin transaction
2422
+ ----------------------------------------
2423
+ BootstrapComponentHelperTest: test_modal
2424
+ ----------------------------------------
2425
+  (0.1ms) rollback transaction
2426
+  (0.1ms) begin transaction
2427
+ ------------------------------------------------
2428
+ BootstrapComponentHelperTest: test_modal_trigger
2429
+ ------------------------------------------------
2430
+  (0.1ms) rollback transaction
2431
+  (0.1ms) begin transaction
2432
+ -----------------------------------------------------
2433
+ BootstrapComponentHelperTest: test_modal_with_trigger
2434
+ -----------------------------------------------------
2435
+  (0.1ms) rollback transaction
2436
+  (0.1ms) begin transaction
2437
+ --------------------------------------
2438
+ BootstrapComponentHelperTest: test_nav
2439
+ --------------------------------------
2440
+  (0.1ms) rollback transaction
2441
+  (0.1ms) begin transaction
2442
+ -----------------------------------------
2443
+ BootstrapComponentHelperTest: test_navbar
2444
+ -----------------------------------------
2445
+  (0.1ms) rollback transaction
2446
+  (0.1ms) begin transaction
2447
+ ----------------------------------------------
2448
+ BootstrapComponentHelperTest: test_page_header
2449
+ ----------------------------------------------
2450
+  (0.1ms) rollback transaction
2451
+  (0.1ms) begin transaction
2452
+ -------------------------------------------
2453
+ BootstrapComponentHelperTest: test_progress
2454
+ -------------------------------------------
2455
+  (0.1ms) rollback transaction
2456
+  (0.1ms) begin transaction
2457
+ ---------------------------------------------
2458
+ BootstrapComponentHelperTest: test_thumbnails
2459
+ ---------------------------------------------
2460
+  (0.1ms) rollback transaction
2461
+  (0.1ms) begin transaction
2462
+ --------------------------------------
2463
+ BootstrapNotifyHelperTest: test_notify
2464
+ --------------------------------------
2465
+  (0.1ms) rollback transaction
2466
+  (0.1ms) begin transaction
2467
+ ---------------------------------
2468
+ BootstrapTabHelperTest: test_pill
2469
+ ---------------------------------
2470
+  (0.1ms) rollback transaction
2471
+  (0.1ms) begin transaction
2472
+ --------------------------------
2473
+ BootstrapTabHelperTest: test_tab
2474
+ --------------------------------
2475
+  (0.1ms) rollback transaction
2476
+  (0.1ms) begin transaction
2477
+ ------------------------------------
2478
+ BootstrapTableHelperTest: test_table
2479
+ ------------------------------------
2480
+  (0.1ms) rollback transaction
2481
+  (0.4ms) begin transaction
2482
+ -----------------------------------------
2483
+ BootstrapBaseHelperTest: test_c_image_tag
2484
+ -----------------------------------------
2485
+  (0.1ms) rollback transaction
2486
+  (0.1ms) begin transaction
2487
+ ----------------------------------------
2488
+ BootstrapBaseHelperTest: test_glyph_icon
2489
+ ----------------------------------------
2490
+  (0.1ms) rollback transaction
2491
+  (0.1ms) begin transaction
2492
+ ----------------------------------
2493
+ BootstrapBaseHelperTest: test_list
2494
+ ----------------------------------
2495
+  (0.1ms) rollback transaction
2496
+  (0.1ms) begin transaction
2497
+ -----------------------------------------
2498
+ BootstrapBaseHelperTest: test_p_image_tag
2499
+ -----------------------------------------
2500
+  (0.1ms) rollback transaction
2501
+  (0.1ms) begin transaction
2502
+ -----------------------------------------
2503
+ BootstrapBaseHelperTest: test_r_image_tag
2504
+ -----------------------------------------
2505
+  (0.1ms) rollback transaction
2506
+  (0.1ms) begin transaction
2507
+ ---------------------------------
2508
+ BootstrapButtonHelperTest: test_a
2509
+ ---------------------------------
2510
+  (0.1ms) rollback transaction
2511
+  (0.1ms) begin transaction
2512
+ --------------------------------------
2513
+ BootstrapButtonHelperTest: test_button
2514
+ --------------------------------------
2515
+  (0.1ms) rollback transaction
2516
+  (0.1ms) begin transaction
2517
+ -----------------------------------------------
2518
+ BootstrapButtonHelperTest: test_disabled_button
2519
+ -----------------------------------------------
2520
+  (0.1ms) rollback transaction
2521
+  (0.1ms) begin transaction
2522
+ --------------------------------------
2523
+ BootstrapButtonHelperTest: test_submit
2524
+ --------------------------------------
2525
+  (0.1ms) rollback transaction
2526
+  (0.1ms) begin transaction
2527
+ ----------------------------------------
2528
+ BootstrapComponentHelperTest: test_badge
2529
+ ----------------------------------------
2530
+  (0.1ms) rollback transaction
2531
+  (0.1ms) begin transaction
2532
+ -----------------------------------------------
2533
+ BootstrapComponentHelperTest: test_button_group
2534
+ -----------------------------------------------
2535
+  (0.1ms) rollback transaction
2536
+  (0.1ms) begin transaction
2537
+ -------------------------------------------------
2538
+ BootstrapComponentHelperTest: test_button_toolbar
2539
+ -------------------------------------------------
2540
+  (0.1ms) rollback transaction
2541
+  (0.1ms) begin transaction
2542
+ ----------------------------------------
2543
+ BootstrapComponentHelperTest: test_flash
2544
+ ----------------------------------------
2545
+  (0.1ms) rollback transaction
2546
+  (0.1ms) begin transaction
2547
+ --------------------------------------------
2548
+ BootstrapComponentHelperTest: test_hero_unit
2549
+ --------------------------------------------
2550
+  (0.1ms) rollback transaction
2551
+  (0.1ms) begin transaction
2552
+ ----------------------------------------
2553
+ BootstrapComponentHelperTest: test_label
2554
+ ----------------------------------------
2555
+  (0.1ms) rollback transaction
2556
+  (0.1ms) begin transaction
2557
+ ----------------------------------------
2558
+ BootstrapComponentHelperTest: test_modal
2559
+ ----------------------------------------
2560
+  (0.1ms) rollback transaction
2561
+  (0.1ms) begin transaction
2562
+ ------------------------------------------------
2563
+ BootstrapComponentHelperTest: test_modal_trigger
2564
+ ------------------------------------------------
2565
+  (0.1ms) rollback transaction
2566
+  (0.1ms) begin transaction
2567
+ -----------------------------------------------------
2568
+ BootstrapComponentHelperTest: test_modal_with_trigger
2569
+ -----------------------------------------------------
2570
+  (0.1ms) rollback transaction
2571
+  (0.1ms) begin transaction
2572
+ --------------------------------------
2573
+ BootstrapComponentHelperTest: test_nav
2574
+ --------------------------------------
2575
+  (0.1ms) rollback transaction
2576
+  (0.1ms) begin transaction
2577
+ -----------------------------------------
2578
+ BootstrapComponentHelperTest: test_navbar
2579
+ -----------------------------------------
2580
+  (0.1ms) rollback transaction
2581
+  (0.1ms) begin transaction
2582
+ ----------------------------------------------
2583
+ BootstrapComponentHelperTest: test_page_header
2584
+ ----------------------------------------------
2585
+  (0.1ms) rollback transaction
2586
+  (0.1ms) begin transaction
2587
+ -------------------------------------------
2588
+ BootstrapComponentHelperTest: test_progress
2589
+ -------------------------------------------
2590
+  (0.1ms) rollback transaction
2591
+  (0.1ms) begin transaction
2592
+ ---------------------------------------------
2593
+ BootstrapComponentHelperTest: test_thumbnails
2594
+ ---------------------------------------------
2595
+  (0.1ms) rollback transaction
2596
+  (0.1ms) begin transaction
2597
+ --------------------------------------
2598
+ BootstrapNotifyHelperTest: test_notify
2599
+ --------------------------------------
2600
+  (0.1ms) rollback transaction
2601
+  (0.1ms) begin transaction
2602
+ ---------------------------------
2603
+ BootstrapTabHelperTest: test_pill
2604
+ ---------------------------------
2605
+  (0.1ms) rollback transaction
2606
+  (0.1ms) begin transaction
2607
+ --------------------------------
2608
+ BootstrapTabHelperTest: test_tab
2609
+ --------------------------------
2610
+  (0.1ms) rollback transaction
2611
+  (0.1ms) begin transaction
2612
+ ------------------------------------
2613
+ BootstrapTableHelperTest: test_table
2614
+ ------------------------------------
2615
+  (0.1ms) rollback transaction
2616
+  (0.4ms) begin transaction
2617
+ -----------------------------------------
2618
+ BootstrapBaseHelperTest: test_c_image_tag
2619
+ -----------------------------------------
2620
+  (0.1ms) rollback transaction
2621
+  (0.1ms) begin transaction
2622
+ ----------------------------------------
2623
+ BootstrapBaseHelperTest: test_glyph_icon
2624
+ ----------------------------------------
2625
+  (0.1ms) rollback transaction
2626
+  (0.1ms) begin transaction
2627
+ ----------------------------------
2628
+ BootstrapBaseHelperTest: test_list
2629
+ ----------------------------------
2630
+  (0.1ms) rollback transaction
2631
+  (0.1ms) begin transaction
2632
+ -----------------------------------------
2633
+ BootstrapBaseHelperTest: test_p_image_tag
2634
+ -----------------------------------------
2635
+  (0.1ms) rollback transaction
2636
+  (0.1ms) begin transaction
2637
+ -----------------------------------------
2638
+ BootstrapBaseHelperTest: test_r_image_tag
2639
+ -----------------------------------------
2640
+  (0.1ms) rollback transaction
2641
+  (0.1ms) begin transaction
2642
+ ---------------------------------
2643
+ BootstrapButtonHelperTest: test_a
2644
+ ---------------------------------
2645
+  (0.1ms) rollback transaction
2646
+  (0.1ms) begin transaction
2647
+ --------------------------------------
2648
+ BootstrapButtonHelperTest: test_button
2649
+ --------------------------------------
2650
+  (0.1ms) rollback transaction
2651
+  (0.1ms) begin transaction
2652
+ -----------------------------------------------
2653
+ BootstrapButtonHelperTest: test_disabled_button
2654
+ -----------------------------------------------
2655
+  (0.1ms) rollback transaction
2656
+  (0.1ms) begin transaction
2657
+ --------------------------------------
2658
+ BootstrapButtonHelperTest: test_submit
2659
+ --------------------------------------
2660
+  (0.1ms) rollback transaction
2661
+  (0.1ms) begin transaction
2662
+ ----------------------------------------
2663
+ BootstrapComponentHelperTest: test_badge
2664
+ ----------------------------------------
2665
+  (0.1ms) rollback transaction
2666
+  (0.1ms) begin transaction
2667
+ -----------------------------------------------
2668
+ BootstrapComponentHelperTest: test_button_group
2669
+ -----------------------------------------------
2670
+  (0.1ms) rollback transaction
2671
+  (0.1ms) begin transaction
2672
+ -------------------------------------------------
2673
+ BootstrapComponentHelperTest: test_button_toolbar
2674
+ -------------------------------------------------
2675
+  (0.1ms) rollback transaction
2676
+  (0.1ms) begin transaction
2677
+ ----------------------------------------
2678
+ BootstrapComponentHelperTest: test_flash
2679
+ ----------------------------------------
2680
+  (0.1ms) rollback transaction
2681
+  (0.1ms) begin transaction
2682
+ --------------------------------------------
2683
+ BootstrapComponentHelperTest: test_hero_unit
2684
+ --------------------------------------------
2685
+  (0.1ms) rollback transaction
2686
+  (0.1ms) begin transaction
2687
+ ----------------------------------------
2688
+ BootstrapComponentHelperTest: test_label
2689
+ ----------------------------------------
2690
+  (0.1ms) rollback transaction
2691
+  (0.1ms) begin transaction
2692
+ ----------------------------------------
2693
+ BootstrapComponentHelperTest: test_modal
2694
+ ----------------------------------------
2695
+  (0.1ms) rollback transaction
2696
+  (0.1ms) begin transaction
2697
+ ------------------------------------------------
2698
+ BootstrapComponentHelperTest: test_modal_trigger
2699
+ ------------------------------------------------
2700
+  (0.1ms) rollback transaction
2701
+  (0.1ms) begin transaction
2702
+ -----------------------------------------------------
2703
+ BootstrapComponentHelperTest: test_modal_with_trigger
2704
+ -----------------------------------------------------
2705
+  (0.1ms) rollback transaction
2706
+  (0.1ms) begin transaction
2707
+ --------------------------------------
2708
+ BootstrapComponentHelperTest: test_nav
2709
+ --------------------------------------
2710
+  (0.1ms) rollback transaction
2711
+  (0.1ms) begin transaction
2712
+ -----------------------------------------
2713
+ BootstrapComponentHelperTest: test_navbar
2714
+ -----------------------------------------
2715
+  (0.1ms) rollback transaction
2716
+  (0.1ms) begin transaction
2717
+ ----------------------------------------------
2718
+ BootstrapComponentHelperTest: test_page_header
2719
+ ----------------------------------------------
2720
+  (0.1ms) rollback transaction
2721
+  (0.1ms) begin transaction
2722
+ -------------------------------------------
2723
+ BootstrapComponentHelperTest: test_progress
2724
+ -------------------------------------------
2725
+  (0.1ms) rollback transaction
2726
+  (0.1ms) begin transaction
2727
+ ---------------------------------------------
2728
+ BootstrapComponentHelperTest: test_thumbnails
2729
+ ---------------------------------------------
2730
+  (0.1ms) rollback transaction
2731
+  (0.1ms) begin transaction
2732
+ --------------------------------------
2733
+ BootstrapNotifyHelperTest: test_notify
2734
+ --------------------------------------
2735
+  (0.1ms) rollback transaction
2736
+  (0.1ms) begin transaction
2737
+ ---------------------------------
2738
+ BootstrapTabHelperTest: test_pill
2739
+ ---------------------------------
2740
+  (0.1ms) rollback transaction
2741
+  (0.1ms) begin transaction
2742
+ --------------------------------
2743
+ BootstrapTabHelperTest: test_tab
2744
+ --------------------------------
2745
+  (0.1ms) rollback transaction
2746
+  (0.1ms) begin transaction
2747
+ ------------------------------------
2748
+ BootstrapTableHelperTest: test_table
2749
+ ------------------------------------
2750
+  (0.1ms) rollback transaction
2751
+  (0.4ms) begin transaction
2752
+ -----------------------------------------
2753
+ BootstrapBaseHelperTest: test_c_image_tag
2754
+ -----------------------------------------
2755
+  (0.1ms) rollback transaction
2756
+  (0.1ms) begin transaction
2757
+ ----------------------------------------
2758
+ BootstrapBaseHelperTest: test_glyph_icon
2759
+ ----------------------------------------
2760
+  (0.1ms) rollback transaction
2761
+  (0.1ms) begin transaction
2762
+ ----------------------------------
2763
+ BootstrapBaseHelperTest: test_list
2764
+ ----------------------------------
2765
+  (0.1ms) rollback transaction
2766
+  (0.1ms) begin transaction
2767
+ -----------------------------------------
2768
+ BootstrapBaseHelperTest: test_p_image_tag
2769
+ -----------------------------------------
2770
+  (0.1ms) rollback transaction
2771
+  (0.1ms) begin transaction
2772
+ -----------------------------------------
2773
+ BootstrapBaseHelperTest: test_r_image_tag
2774
+ -----------------------------------------
2775
+  (0.1ms) rollback transaction
2776
+  (0.1ms) begin transaction
2777
+ ---------------------------------
2778
+ BootstrapButtonHelperTest: test_a
2779
+ ---------------------------------
2780
+  (0.1ms) rollback transaction
2781
+  (0.1ms) begin transaction
2782
+ --------------------------------------
2783
+ BootstrapButtonHelperTest: test_button
2784
+ --------------------------------------
2785
+  (0.1ms) rollback transaction
2786
+  (0.1ms) begin transaction
2787
+ -----------------------------------------------
2788
+ BootstrapButtonHelperTest: test_disabled_button
2789
+ -----------------------------------------------
2790
+  (0.1ms) rollback transaction
2791
+  (0.1ms) begin transaction
2792
+ --------------------------------------
2793
+ BootstrapButtonHelperTest: test_submit
2794
+ --------------------------------------
2795
+  (0.1ms) rollback transaction
2796
+  (0.1ms) begin transaction
2797
+ ----------------------------------------
2798
+ BootstrapComponentHelperTest: test_badge
2799
+ ----------------------------------------
2800
+  (0.1ms) rollback transaction
2801
+  (0.1ms) begin transaction
2802
+ -----------------------------------------------
2803
+ BootstrapComponentHelperTest: test_button_group
2804
+ -----------------------------------------------
2805
+  (0.1ms) rollback transaction
2806
+  (0.1ms) begin transaction
2807
+ -------------------------------------------------
2808
+ BootstrapComponentHelperTest: test_button_toolbar
2809
+ -------------------------------------------------
2810
+  (0.1ms) rollback transaction
2811
+  (0.1ms) begin transaction
2812
+ ----------------------------------------
2813
+ BootstrapComponentHelperTest: test_flash
2814
+ ----------------------------------------
2815
+  (0.1ms) rollback transaction
2816
+  (0.1ms) begin transaction
2817
+ --------------------------------------------
2818
+ BootstrapComponentHelperTest: test_hero_unit
2819
+ --------------------------------------------
2820
+  (0.1ms) rollback transaction
2821
+  (0.1ms) begin transaction
2822
+ ----------------------------------------
2823
+ BootstrapComponentHelperTest: test_label
2824
+ ----------------------------------------
2825
+  (0.1ms) rollback transaction
2826
+  (0.1ms) begin transaction
2827
+ ----------------------------------------
2828
+ BootstrapComponentHelperTest: test_modal
2829
+ ----------------------------------------
2830
+  (0.1ms) rollback transaction
2831
+  (0.1ms) begin transaction
2832
+ ------------------------------------------------
2833
+ BootstrapComponentHelperTest: test_modal_trigger
2834
+ ------------------------------------------------
2835
+  (0.1ms) rollback transaction
2836
+  (0.1ms) begin transaction
2837
+ -----------------------------------------------------
2838
+ BootstrapComponentHelperTest: test_modal_with_trigger
2839
+ -----------------------------------------------------
2840
+  (0.1ms) rollback transaction
2841
+  (0.1ms) begin transaction
2842
+ --------------------------------------
2843
+ BootstrapComponentHelperTest: test_nav
2844
+ --------------------------------------
2845
+  (0.1ms) rollback transaction
2846
+  (0.1ms) begin transaction
2847
+ -----------------------------------------
2848
+ BootstrapComponentHelperTest: test_navbar
2849
+ -----------------------------------------
2850
+  (0.1ms) rollback transaction
2851
+  (0.1ms) begin transaction
2852
+ ----------------------------------------------
2853
+ BootstrapComponentHelperTest: test_page_header
2854
+ ----------------------------------------------
2855
+  (0.1ms) rollback transaction
2856
+  (0.1ms) begin transaction
2857
+ -------------------------------------------
2858
+ BootstrapComponentHelperTest: test_progress
2859
+ -------------------------------------------
2860
+  (0.1ms) rollback transaction
2861
+  (0.1ms) begin transaction
2862
+ ---------------------------------------------
2863
+ BootstrapComponentHelperTest: test_thumbnails
2864
+ ---------------------------------------------
2865
+  (0.1ms) rollback transaction
2866
+  (0.1ms) begin transaction
2867
+ --------------------------------------
2868
+ BootstrapNotifyHelperTest: test_notify
2869
+ --------------------------------------
2870
+  (0.1ms) rollback transaction
2871
+  (0.1ms) begin transaction
2872
+ ---------------------------------
2873
+ BootstrapTabHelperTest: test_pill
2874
+ ---------------------------------
2875
+  (0.1ms) rollback transaction
2876
+  (0.1ms) begin transaction
2877
+ --------------------------------
2878
+ BootstrapTabHelperTest: test_tab
2879
+ --------------------------------
2880
+  (0.1ms) rollback transaction
2881
+  (0.1ms) begin transaction
2882
+ ------------------------------------
2883
+ BootstrapTableHelperTest: test_table
2884
+ ------------------------------------
2885
+  (0.1ms) rollback transaction
2886
+  (0.4ms) begin transaction
2887
+ -----------------------------------------
2888
+ BootstrapBaseHelperTest: test_c_image_tag
2889
+ -----------------------------------------
2890
+  (0.1ms) rollback transaction
2891
+  (0.1ms) begin transaction
2892
+ ----------------------------------------
2893
+ BootstrapBaseHelperTest: test_glyph_icon
2894
+ ----------------------------------------
2895
+  (0.1ms) rollback transaction
2896
+  (0.1ms) begin transaction
2897
+ ----------------------------------
2898
+ BootstrapBaseHelperTest: test_list
2899
+ ----------------------------------
2900
+  (0.1ms) rollback transaction
2901
+  (0.1ms) begin transaction
2902
+ -----------------------------------------
2903
+ BootstrapBaseHelperTest: test_p_image_tag
2904
+ -----------------------------------------
2905
+  (0.1ms) rollback transaction
2906
+  (0.1ms) begin transaction
2907
+ -----------------------------------------
2908
+ BootstrapBaseHelperTest: test_r_image_tag
2909
+ -----------------------------------------
2910
+  (0.1ms) rollback transaction
2911
+  (0.1ms) begin transaction
2912
+ ---------------------------------
2913
+ BootstrapButtonHelperTest: test_a
2914
+ ---------------------------------
2915
+  (0.1ms) rollback transaction
2916
+  (0.1ms) begin transaction
2917
+ --------------------------------------
2918
+ BootstrapButtonHelperTest: test_button
2919
+ --------------------------------------
2920
+  (0.1ms) rollback transaction
2921
+  (0.1ms) begin transaction
2922
+ -----------------------------------------------
2923
+ BootstrapButtonHelperTest: test_disabled_button
2924
+ -----------------------------------------------
2925
+  (0.1ms) rollback transaction
2926
+  (0.1ms) begin transaction
2927
+ --------------------------------------
2928
+ BootstrapButtonHelperTest: test_submit
2929
+ --------------------------------------
2930
+  (0.1ms) rollback transaction
2931
+  (0.1ms) begin transaction
2932
+ ----------------------------------------
2933
+ BootstrapComponentHelperTest: test_badge
2934
+ ----------------------------------------
2935
+  (0.1ms) rollback transaction
2936
+  (0.1ms) begin transaction
2937
+ -----------------------------------------------
2938
+ BootstrapComponentHelperTest: test_button_group
2939
+ -----------------------------------------------
2940
+  (0.1ms) rollback transaction
2941
+  (0.1ms) begin transaction
2942
+ -------------------------------------------------
2943
+ BootstrapComponentHelperTest: test_button_toolbar
2944
+ -------------------------------------------------
2945
+  (0.1ms) rollback transaction
2946
+  (0.1ms) begin transaction
2947
+ ----------------------------------------
2948
+ BootstrapComponentHelperTest: test_flash
2949
+ ----------------------------------------
2950
+  (0.1ms) rollback transaction
2951
+  (0.1ms) begin transaction
2952
+ --------------------------------------------
2953
+ BootstrapComponentHelperTest: test_hero_unit
2954
+ --------------------------------------------
2955
+  (0.1ms) rollback transaction
2956
+  (0.1ms) begin transaction
2957
+ ----------------------------------------
2958
+ BootstrapComponentHelperTest: test_label
2959
+ ----------------------------------------
2960
+  (0.1ms) rollback transaction
2961
+  (0.1ms) begin transaction
2962
+ ----------------------------------------
2963
+ BootstrapComponentHelperTest: test_modal
2964
+ ----------------------------------------
2965
+  (0.1ms) rollback transaction
2966
+  (0.1ms) begin transaction
2967
+ ------------------------------------------------
2968
+ BootstrapComponentHelperTest: test_modal_trigger
2969
+ ------------------------------------------------
2970
+  (0.1ms) rollback transaction
2971
+  (0.1ms) begin transaction
2972
+ -----------------------------------------------------
2973
+ BootstrapComponentHelperTest: test_modal_with_trigger
2974
+ -----------------------------------------------------
2975
+  (0.1ms) rollback transaction
2976
+  (0.1ms) begin transaction
2977
+ --------------------------------------
2978
+ BootstrapComponentHelperTest: test_nav
2979
+ --------------------------------------
2980
+  (0.1ms) rollback transaction
2981
+  (0.1ms) begin transaction
2982
+ -----------------------------------------
2983
+ BootstrapComponentHelperTest: test_navbar
2984
+ -----------------------------------------
2985
+  (0.1ms) rollback transaction
2986
+  (0.1ms) begin transaction
2987
+ ----------------------------------------------
2988
+ BootstrapComponentHelperTest: test_page_header
2989
+ ----------------------------------------------
2990
+  (0.1ms) rollback transaction
2991
+  (0.1ms) begin transaction
2992
+ -------------------------------------------
2993
+ BootstrapComponentHelperTest: test_progress
2994
+ -------------------------------------------
2995
+  (0.1ms) rollback transaction
2996
+  (0.1ms) begin transaction
2997
+ ---------------------------------------------
2998
+ BootstrapComponentHelperTest: test_thumbnails
2999
+ ---------------------------------------------
3000
+  (0.1ms) rollback transaction
3001
+  (0.1ms) begin transaction
3002
+ --------------------------------------
3003
+ BootstrapNotifyHelperTest: test_notify
3004
+ --------------------------------------
3005
+  (0.1ms) rollback transaction
3006
+  (0.1ms) begin transaction
3007
+ ---------------------------------
3008
+ BootstrapTabHelperTest: test_pill
3009
+ ---------------------------------
3010
+  (0.1ms) rollback transaction
3011
+  (0.1ms) begin transaction
3012
+ --------------------------------
3013
+ BootstrapTabHelperTest: test_tab
3014
+ --------------------------------
3015
+  (0.1ms) rollback transaction
3016
+  (0.1ms) begin transaction
3017
+ ------------------------------------
3018
+ BootstrapTableHelperTest: test_table
3019
+ ------------------------------------
3020
+  (0.1ms) rollback transaction