bigmouth 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (442) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +37 -0
  4. data/app/assets/javascripts/bigmouth/application.js +16 -0
  5. data/app/assets/javascripts/bigmouth/articles.js +2 -0
  6. data/app/assets/stylesheets/bigmouth/application.css.scss +4 -0
  7. data/app/assets/stylesheets/bigmouth/custom.scss +3 -0
  8. data/app/controllers/bigmouth/application_controller.rb +2 -0
  9. data/app/controllers/bigmouth/articles_controller.rb +76 -0
  10. data/app/helpers/bigmouth/application_helper.rb +4 -0
  11. data/app/helpers/bigmouth/articles_helper.rb +12 -0
  12. data/app/models/bigmouth/article.rb +5 -0
  13. data/app/views/bigmouth/articles/_form.html.slim +19 -0
  14. data/app/views/bigmouth/articles/edit.html.slim +6 -0
  15. data/app/views/bigmouth/articles/index.html.slim +18 -0
  16. data/app/views/bigmouth/articles/new.html.slim +4 -0
  17. data/app/views/bigmouth/articles/show.html.slim +15 -0
  18. data/app/views/layouts/bigmouth/default.html.slim +27 -0
  19. data/config/routes.rb +6 -0
  20. data/db/migrate/20150125121829_create_bigmouth_articles.rb +10 -0
  21. data/db/migrate/20150126024751_add_author_id_to_bigmouth_articles.rb +5 -0
  22. data/lib/#bigmouth.rb# +31 -0
  23. data/lib/bigmouth/engine.rb +5 -0
  24. data/lib/bigmouth/version.rb +3 -0
  25. data/lib/bigmouth.rb +33 -0
  26. data/lib/tasks/bigmouth_tasks.rake +4 -0
  27. data/test/bigmouth_test.rb +7 -0
  28. data/test/controllers/bigmouth/#articles_controller_test.rb# +61 -0
  29. data/test/controllers/bigmouth/articles_controller_test.rb +61 -0
  30. data/test/dummy/README.rdoc +28 -0
  31. data/test/dummy/Rakefile +6 -0
  32. data/test/dummy/app/assets/javascripts/application.js +13 -0
  33. data/test/dummy/app/assets/javascripts/sessions.js +2 -0
  34. data/test/dummy/app/assets/javascripts/users.js +2 -0
  35. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  36. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  37. data/test/dummy/app/assets/stylesheets/sessions.css +4 -0
  38. data/test/dummy/app/assets/stylesheets/users.css +4 -0
  39. data/test/dummy/app/controllers/application_controller.rb +11 -0
  40. data/test/dummy/app/controllers/sessions_controller.rb +21 -0
  41. data/test/dummy/app/controllers/users_controller.rb +59 -0
  42. data/test/dummy/app/helpers/application_helper.rb +2 -0
  43. data/test/dummy/app/helpers/sessions_helper.rb +2 -0
  44. data/test/dummy/app/helpers/users_helper.rb +2 -0
  45. data/test/dummy/app/models/user.rb +11 -0
  46. data/test/dummy/app/views/layouts/#application.html.erb# +22 -0
  47. data/test/dummy/app/views/layouts/application.html.erb +22 -0
  48. data/test/dummy/app/views/sessions/_form.html.erb +13 -0
  49. data/test/dummy/app/views/sessions/create.html.erb +2 -0
  50. data/test/dummy/app/views/sessions/destroy.html.erb +2 -0
  51. data/test/dummy/app/views/sessions/new.html.erb +5 -0
  52. data/test/dummy/app/views/users/_form.html.erb +29 -0
  53. data/test/dummy/app/views/users/edit.html.erb +6 -0
  54. data/test/dummy/app/views/users/index.html.erb +31 -0
  55. data/test/dummy/app/views/users/new.html.erb +5 -0
  56. data/test/dummy/app/views/users/show.html.erb +19 -0
  57. data/test/dummy/bin/bundle +3 -0
  58. data/test/dummy/bin/rails +4 -0
  59. data/test/dummy/bin/rake +4 -0
  60. data/test/dummy/bin/setup +29 -0
  61. data/test/dummy/config/application.rb +28 -0
  62. data/test/dummy/config/boot.rb +5 -0
  63. data/test/dummy/config/database.yml +25 -0
  64. data/test/dummy/config/environment.rb +5 -0
  65. data/test/dummy/config/environments/development.rb +41 -0
  66. data/test/dummy/config/environments/production.rb +79 -0
  67. data/test/dummy/config/environments/test.rb +42 -0
  68. data/test/dummy/config/initializers/assets.rb +11 -0
  69. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  70. data/test/dummy/config/initializers/bigmouth.rb +13 -0
  71. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  72. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  73. data/test/dummy/config/initializers/inflections.rb +16 -0
  74. data/test/dummy/config/initializers/mime_types.rb +4 -0
  75. data/test/dummy/config/initializers/session_store.rb +3 -0
  76. data/test/dummy/config/initializers/sorcery.rb +462 -0
  77. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  78. data/test/dummy/config/locales/en.yml +23 -0
  79. data/test/dummy/config/routes.rb +10 -0
  80. data/test/dummy/config/secrets.yml +22 -0
  81. data/test/dummy/config/tinymce.yml +10 -0
  82. data/test/dummy/config.ru +4 -0
  83. data/test/dummy/db/development.sqlite3 +0 -0
  84. data/test/dummy/db/migrate/20150129053810_sorcery_core.rb +13 -0
  85. data/test/dummy/db/schema.rb +34 -0
  86. data/test/dummy/db/test.sqlite3 +0 -0
  87. data/test/dummy/log/development.log +36941 -0
  88. data/test/dummy/log/test.log +1063 -0
  89. data/test/dummy/public/404.html +67 -0
  90. data/test/dummy/public/422.html +67 -0
  91. data/test/dummy/public/500.html +66 -0
  92. data/test/dummy/public/favicon.ico +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sass/365dfe376d173aa71edc333cb62d683802ac4ebb/application.css.scssc +0 -0
  94. data/test/dummy/tmp/cache/assets/development/sass/365dfe376d173aa71edc333cb62d683802ac4ebb/custom.css.scssc +0 -0
  95. data/test/dummy/tmp/cache/assets/development/sass/365dfe376d173aa71edc333cb62d683802ac4ebb/custom.scssc +0 -0
  96. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_alerts.scssc +0 -0
  97. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_badges.scssc +0 -0
  98. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_breadcrumbs.scssc +0 -0
  99. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_button-groups.scssc +0 -0
  100. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_buttons.scssc +0 -0
  101. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_carousel.scssc +0 -0
  102. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_close.scssc +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_code.scssc +0 -0
  104. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_component-animations.scssc +0 -0
  105. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_dropdowns.scssc +0 -0
  106. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_forms.scssc +0 -0
  107. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_glyphicons.scssc +0 -0
  108. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_grid.scssc +0 -0
  109. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_input-groups.scssc +0 -0
  110. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_jumbotron.scssc +0 -0
  111. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_labels.scssc +0 -0
  112. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_list-group.scssc +0 -0
  113. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_media.scssc +0 -0
  114. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_mixins.scssc +0 -0
  115. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_modals.scssc +0 -0
  116. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_navbar.scssc +0 -0
  117. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_navs.scssc +0 -0
  118. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_normalize.scssc +0 -0
  119. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_pager.scssc +0 -0
  120. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_pagination.scssc +0 -0
  121. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_panels.scssc +0 -0
  122. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_popovers.scssc +0 -0
  123. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_print.scssc +0 -0
  124. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_progress-bars.scssc +0 -0
  125. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_responsive-embed.scssc +0 -0
  126. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_responsive-utilities.scssc +0 -0
  127. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_scaffolding.scssc +0 -0
  128. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_tables.scssc +0 -0
  129. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_thumbnails.scssc +0 -0
  130. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_tooltip.scssc +0 -0
  131. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_type.scssc +0 -0
  132. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_utilities.scssc +0 -0
  133. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_variables.scssc +0 -0
  134. data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_wells.scssc +0 -0
  135. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_alerts.scssc +0 -0
  136. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_background-variant.scssc +0 -0
  137. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_border-radius.scssc +0 -0
  138. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_buttons.scssc +0 -0
  139. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_center-block.scssc +0 -0
  140. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_clearfix.scssc +0 -0
  141. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_forms.scssc +0 -0
  142. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_gradients.scssc +0 -0
  143. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_grid-framework.scssc +0 -0
  144. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_grid.scssc +0 -0
  145. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_hide-text.scssc +0 -0
  146. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_image.scssc +0 -0
  147. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_labels.scssc +0 -0
  148. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_list-group.scssc +0 -0
  149. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_nav-divider.scssc +0 -0
  150. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_nav-vertical-align.scssc +0 -0
  151. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_opacity.scssc +0 -0
  152. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_pagination.scssc +0 -0
  153. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_panels.scssc +0 -0
  154. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_progress-bar.scssc +0 -0
  155. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_reset-filter.scssc +0 -0
  156. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_resize.scssc +0 -0
  157. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_responsive-visibility.scssc +0 -0
  158. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_size.scssc +0 -0
  159. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_tab-focus.scssc +0 -0
  160. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_table-row.scssc +0 -0
  161. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_text-emphasis.scssc +0 -0
  162. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_text-overflow.scssc +0 -0
  163. data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_vendor-prefixes.scssc +0 -0
  164. data/test/dummy/tmp/cache/assets/development/sass/f4632670e0618904d6cdfaa05215347dcf2fcba2/_bootstrap-sprockets.scssc +0 -0
  165. data/test/dummy/tmp/cache/assets/development/sass/f4632670e0618904d6cdfaa05215347dcf2fcba2/_bootstrap.scssc +0 -0
  166. data/test/dummy/tmp/cache/assets/development/sprockets/0800f54ee19cf3cee10b956fa9786799 +0 -0
  167. data/test/dummy/tmp/cache/assets/development/sprockets/0b3bc7828f4a9fe07afe8f989474a5ec +0 -0
  168. data/test/dummy/tmp/cache/assets/development/sprockets/0d950fff852c8cc3816ea54eeb5a1b2a +0 -0
  169. data/test/dummy/tmp/cache/assets/development/sprockets/0ec737c7804927b87a778f1b8fd956a4 +0 -0
  170. data/test/dummy/tmp/cache/assets/development/sprockets/13cd01d1efdd0e91fd52fafc1bf9565f +0 -0
  171. data/test/dummy/tmp/cache/assets/development/sprockets/13d2a7feb53fc9b264c8f81d399ea58e +0 -0
  172. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  173. data/test/dummy/tmp/cache/assets/development/sprockets/146dac6de2f351f56eeb983e57282736 +0 -0
  174. data/test/dummy/tmp/cache/assets/development/sprockets/1bda73f85ee45cdc3618869a34b453c4 +0 -0
  175. data/test/dummy/tmp/cache/assets/development/sprockets/2006bd1910570bb544d0dc32d715b996 +0 -0
  176. data/test/dummy/tmp/cache/assets/development/sprockets/23cf365c3ba440f92a8f991efbcfa6a8 +0 -0
  177. data/test/dummy/tmp/cache/assets/development/sprockets/2580ae76161b34d0884be8806320ca61 +0 -0
  178. data/test/dummy/tmp/cache/assets/development/sprockets/26131461f8b9e7a897ba3f7269ddb6b4 +0 -0
  179. data/test/dummy/tmp/cache/assets/development/sprockets/2770d71695c9a6f0c2bc160ad37db730 +0 -0
  180. data/test/dummy/tmp/cache/assets/development/sprockets/29ca5e3268edb180578eaa08ddd9915c +0 -0
  181. data/test/dummy/tmp/cache/assets/development/sprockets/2d665f9a2281c838d3d69f2b737902d3 +0 -0
  182. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  183. data/test/dummy/tmp/cache/assets/development/sprockets/325360df43b85fca59b40b8762508af4 +0 -0
  184. data/test/dummy/tmp/cache/assets/development/sprockets/32f6bca48ffb4460dfd8f12fc1ef85a1 +0 -0
  185. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  186. data/test/dummy/tmp/cache/assets/development/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
  187. data/test/dummy/tmp/cache/assets/development/sprockets/383ef9be6bc79cc5951399b3c3b46535 +0 -0
  188. data/test/dummy/tmp/cache/assets/development/sprockets/388376eb1d0b8a9ed9e4318ac247d7d4 +0 -0
  189. data/test/dummy/tmp/cache/assets/development/sprockets/3b6ff5c4b970461fc3a4be5ac12d0b3d +0 -0
  190. data/test/dummy/tmp/cache/assets/development/sprockets/3b7a25bfd614ce14333ba7ed03937a55 +0 -0
  191. data/test/dummy/tmp/cache/assets/development/sprockets/3bc494fe8e4dc2c2b9781f7a811ee00f +0 -0
  192. data/test/dummy/tmp/cache/assets/development/sprockets/3c72c3313cf35da0f213400d6fec1541 +0 -0
  193. data/test/dummy/tmp/cache/assets/development/sprockets/4050a4e5062ab95c9f32e9b6940821ea +0 -0
  194. data/test/dummy/tmp/cache/assets/development/sprockets/42fb7cef7cfa43cdd2b5b64b5c20b889 +0 -0
  195. data/test/dummy/tmp/cache/assets/development/sprockets/43e5750d09bdf0e36a57cbf32acb099e +0 -0
  196. data/test/dummy/tmp/cache/assets/development/sprockets/451a8fbb54a23dd3a5547a57f94df7e4 +0 -0
  197. data/test/dummy/tmp/cache/assets/development/sprockets/46b842cdfa1e5070d20314cbb332d59c +0 -0
  198. data/test/dummy/tmp/cache/assets/development/sprockets/4b7ddd43b4359749c832f5b4b1bc7cf8 +0 -0
  199. data/test/dummy/tmp/cache/assets/development/sprockets/4bb54293ea4b6f08466a2557de5a2a11 +0 -0
  200. data/test/dummy/tmp/cache/assets/development/sprockets/4be5d609ea74e7b38e483d579dedd8d7 +0 -0
  201. data/test/dummy/tmp/cache/assets/development/sprockets/4e025241a8d1e12557a4e2b5d3063d7e +0 -0
  202. data/test/dummy/tmp/cache/assets/development/sprockets/4f41a3468d8fd87e462d54dfca140680 +0 -0
  203. data/test/dummy/tmp/cache/assets/development/sprockets/501519c399e259df3bc49ca644322893 +0 -0
  204. data/test/dummy/tmp/cache/assets/development/sprockets/508872d04f76d8be3efaf0f82d8fb0b7 +0 -0
  205. data/test/dummy/tmp/cache/assets/development/sprockets/50a7922f106c3194f16edef90cb660c9 +0 -0
  206. data/test/dummy/tmp/cache/assets/development/sprockets/510da110ae528e2d22533be39ff696c5 +0 -0
  207. data/test/dummy/tmp/cache/assets/development/sprockets/5379d1871319f899b50fdcbe28e5d018 +0 -0
  208. data/test/dummy/tmp/cache/assets/development/sprockets/53b12122a17e514d3adca5cdb3048285 +0 -0
  209. data/test/dummy/tmp/cache/assets/development/sprockets/54cdc3dee8cad9f90c8539aa32d1e4f2 +0 -0
  210. data/test/dummy/tmp/cache/assets/development/sprockets/57551ea75456b809d737e62170040caf +0 -0
  211. data/test/dummy/tmp/cache/assets/development/sprockets/59de21355aa0fd0d461308733da4cd3b +0 -0
  212. data/test/dummy/tmp/cache/assets/development/sprockets/5c0bcb86ff5cdf72a4a29841434f88dc +0 -0
  213. data/test/dummy/tmp/cache/assets/development/sprockets/5dae5894de8c275b1254aaf067195921 +0 -0
  214. data/test/dummy/tmp/cache/assets/development/sprockets/5dbfb71999c0a18ab8d2cc39b1f71284 +0 -0
  215. data/test/dummy/tmp/cache/assets/development/sprockets/5f1a0d05e77ca8b9a1fc2a47e17a8174 +0 -0
  216. data/test/dummy/tmp/cache/assets/development/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
  217. data/test/dummy/tmp/cache/assets/development/sprockets/707ab35c5250018368f3a9a4df4da449 +0 -0
  218. data/test/dummy/tmp/cache/assets/development/sprockets/73cfbca7c1b756843290765631f4a785 +0 -0
  219. data/test/dummy/tmp/cache/assets/development/sprockets/75cd2272140031326dca921e73a933f9 +0 -0
  220. data/test/dummy/tmp/cache/assets/development/sprockets/76163a3e3c27325fb0ff4ed780b94fe8 +0 -0
  221. data/test/dummy/tmp/cache/assets/development/sprockets/79b7d24c49b1d2ea59077302f8b3a18b +0 -0
  222. data/test/dummy/tmp/cache/assets/development/sprockets/7a59f22f8067363e3395bc15aac4dbed +0 -0
  223. data/test/dummy/tmp/cache/assets/development/sprockets/7ab1c3857e4e7ea9e7174d62ca10a6e1 +0 -0
  224. data/test/dummy/tmp/cache/assets/development/sprockets/7cab2c7321621193037a91e348cf67e5 +0 -0
  225. data/test/dummy/tmp/cache/assets/development/sprockets/7d5608952c1d5efe059cc860bce1cb35 +0 -0
  226. data/test/dummy/tmp/cache/assets/development/sprockets/7f9592572b36c306feb917ee3a49639b +0 -0
  227. data/test/dummy/tmp/cache/assets/development/sprockets/80b31d46ab66182422df94cd9712b458 +0 -0
  228. data/test/dummy/tmp/cache/assets/development/sprockets/85d1b2c4394d4404cc670da0e251388e +0 -0
  229. data/test/dummy/tmp/cache/assets/development/sprockets/867ee69677cde04a7642174f04a7e034 +0 -0
  230. data/test/dummy/tmp/cache/assets/development/sprockets/87b209c0c9da28094a8d5581a21262c6 +0 -0
  231. data/test/dummy/tmp/cache/assets/development/sprockets/87d3d8a0e65a412e3adc455bc4bf0419 +0 -0
  232. data/test/dummy/tmp/cache/assets/development/sprockets/89b4e37ba66874fc6765f790cdc1aae3 +0 -0
  233. data/test/dummy/tmp/cache/assets/development/sprockets/8a389a2323475a7053fc419c4103814f +0 -0
  234. data/test/dummy/tmp/cache/assets/development/sprockets/8b806a0ae20adb61aba4b0e7c24c86d1 +0 -0
  235. data/test/dummy/tmp/cache/assets/development/sprockets/8db1cfb543feba7dbf3b1ad076395681 +0 -0
  236. data/test/dummy/tmp/cache/assets/development/sprockets/981923089e4607a8bd7da1384b2712c3 +0 -0
  237. data/test/dummy/tmp/cache/assets/development/sprockets/9caabbfb306d294b869c0e5ef25ed6ad +0 -0
  238. data/test/dummy/tmp/cache/assets/development/sprockets/9d39f38ba45b0ec46cbbcf748d899172 +0 -0
  239. data/test/dummy/tmp/cache/assets/development/sprockets/9ea84759be7ee597c81ea6b306983dd1 +0 -0
  240. data/test/dummy/tmp/cache/assets/development/sprockets/9ff88e23342f6d1e65e3617390550c98 +0 -0
  241. data/test/dummy/tmp/cache/assets/development/sprockets/a17257ce0ba57baae100bbc3ceac5dfb +0 -0
  242. data/test/dummy/tmp/cache/assets/development/sprockets/a1dea2a2c7707388ed8ec70150c99735 +0 -0
  243. data/test/dummy/tmp/cache/assets/development/sprockets/a6ca6a84d389f9b81abc9b055b5cab79 +0 -0
  244. data/test/dummy/tmp/cache/assets/development/sprockets/a79f32a7b19efba7b69efebbd1ac6425 +0 -0
  245. data/test/dummy/tmp/cache/assets/development/sprockets/ab7a93c91e93451ef33741a925d02d08 +0 -0
  246. data/test/dummy/tmp/cache/assets/development/sprockets/ac893c1e97c4fca776b0fa76929a71ae +0 -0
  247. data/test/dummy/tmp/cache/assets/development/sprockets/ace517e7e927c1ece160bd3024b1dc5c +0 -0
  248. data/test/dummy/tmp/cache/assets/development/sprockets/b3a5c599251f7cf1f3e73174b9646986 +0 -0
  249. data/test/dummy/tmp/cache/assets/development/sprockets/b3e1ccf83e92a0235ec89cbc837925a6 +0 -0
  250. data/test/dummy/tmp/cache/assets/development/sprockets/b5f53e94b387e8f6c7cb791a9866d867 +0 -0
  251. data/test/dummy/tmp/cache/assets/development/sprockets/b644258792ab07998445a3a13c5346b0 +0 -0
  252. data/test/dummy/tmp/cache/assets/development/sprockets/b710fe7f6a4f661200aa48112996586a +0 -0
  253. data/test/dummy/tmp/cache/assets/development/sprockets/b7ee934a0cfd8a77057075829e86b862 +0 -0
  254. data/test/dummy/tmp/cache/assets/development/sprockets/b9d280b317ea809834bd8cff91690afa +0 -0
  255. data/test/dummy/tmp/cache/assets/development/sprockets/bc384ffca623dd84dcc27426de8f538e +0 -0
  256. data/test/dummy/tmp/cache/assets/development/sprockets/bd25bf8269cb7fbc481ea93290e14619 +0 -0
  257. data/test/dummy/tmp/cache/assets/development/sprockets/bf4c6581e02e0626699a85cbf74479bd +0 -0
  258. data/test/dummy/tmp/cache/assets/development/sprockets/c164999110702fe49d2672bf6c3f48c0 +0 -0
  259. data/test/dummy/tmp/cache/assets/development/sprockets/c27a3e2bd1de5e03ad3501c17fd7ecf1 +0 -0
  260. data/test/dummy/tmp/cache/assets/development/sprockets/c2d8c0856a19fd683b5f4d7704382aa2 +0 -0
  261. data/test/dummy/tmp/cache/assets/development/sprockets/c31256c47d596d7ab5bec954b96e6e19 +0 -0
  262. data/test/dummy/tmp/cache/assets/development/sprockets/c3a2774d3288ca20b74f9baf56656109 +0 -0
  263. data/test/dummy/tmp/cache/assets/development/sprockets/c3ec335a67fd016e5f01916073c165b4 +0 -0
  264. data/test/dummy/tmp/cache/assets/development/sprockets/c57031591f8741c53c5c7431633997c4 +0 -0
  265. data/test/dummy/tmp/cache/assets/development/sprockets/c816c88aed3e2bbd9d5d2ff726b1c7c2 +0 -0
  266. data/test/dummy/tmp/cache/assets/development/sprockets/cebc6db0bbb8120f430da3970b173d2f +0 -0
  267. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  268. data/test/dummy/tmp/cache/assets/development/sprockets/d039180b508a0299d4ac3f7fbf9662cd +0 -0
  269. data/test/dummy/tmp/cache/assets/development/sprockets/d0771a5d56c6dd57590ad00cd2a287f1 +0 -0
  270. data/test/dummy/tmp/cache/assets/development/sprockets/d15b1d9a1b02f711ec089d10fea24315 +0 -0
  271. data/test/dummy/tmp/cache/assets/development/sprockets/d2038f3ae034aa5d2baa6f1b7359ee02 +0 -0
  272. data/test/dummy/tmp/cache/assets/development/sprockets/d5862a08d88b337e70c13f403c3a0912 +0 -0
  273. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  274. data/test/dummy/tmp/cache/assets/development/sprockets/d9328ea75ef727a9049f27c87ff53e67 +0 -0
  275. data/test/dummy/tmp/cache/assets/development/sprockets/dc04ff4958b01098f5923487afba1f60 +0 -0
  276. data/test/dummy/tmp/cache/assets/development/sprockets/de549dcf945ab5f71371242966074439 +0 -0
  277. data/test/dummy/tmp/cache/assets/development/sprockets/dfa904f001d086cda03ebfac7fde7550 +0 -0
  278. data/test/dummy/tmp/cache/assets/development/sprockets/e08495f04cd097009667a60ec0bde5cb +0 -0
  279. data/test/dummy/tmp/cache/assets/development/sprockets/e7d4caf1fd93f94e35c0d70b4a16b308 +0 -0
  280. data/test/dummy/tmp/cache/assets/development/sprockets/ec44bf41dda440ffa0a442b36f3f682f +0 -0
  281. data/test/dummy/tmp/cache/assets/development/sprockets/ed95a40034d5142585894fe388b45552 +0 -0
  282. data/test/dummy/tmp/cache/assets/development/sprockets/edf7ee075b440ec3827ac0cdfde324b3 +0 -0
  283. data/test/dummy/tmp/cache/assets/development/sprockets/eee1420e123cd3e2ff3d3bd790d51cdf +0 -0
  284. data/test/dummy/tmp/cache/assets/development/sprockets/f0908aaef2c0165df00f19c66fa8ab50 +0 -0
  285. data/test/dummy/tmp/cache/assets/development/sprockets/f4ea112f7250e02269448d556e4379d8 +0 -0
  286. data/test/dummy/tmp/cache/assets/development/sprockets/f56253b5f374fff1a33fbbc9881c9124 +0 -0
  287. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  288. data/test/dummy/tmp/cache/assets/development/sprockets/f87083f064a636b4fda659b15d9adede +0 -0
  289. data/test/dummy/tmp/cache/assets/development/sprockets/fbfb440251f374b2d535d7aadda4019f +0 -0
  290. data/test/dummy/tmp/cache/assets/development/sprockets/fcac08ebaff1499d385ec5712e1a218c +0 -0
  291. data/test/dummy/tmp/cache/assets/test/sass/365dfe376d173aa71edc333cb62d683802ac4ebb/application.css.scssc +0 -0
  292. data/test/dummy/tmp/cache/assets/test/sass/365dfe376d173aa71edc333cb62d683802ac4ebb/custom.scssc +0 -0
  293. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_alerts.scssc +0 -0
  294. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_badges.scssc +0 -0
  295. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_breadcrumbs.scssc +0 -0
  296. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_button-groups.scssc +0 -0
  297. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_buttons.scssc +0 -0
  298. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_carousel.scssc +0 -0
  299. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_close.scssc +0 -0
  300. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_code.scssc +0 -0
  301. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_component-animations.scssc +0 -0
  302. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_dropdowns.scssc +0 -0
  303. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_forms.scssc +0 -0
  304. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_glyphicons.scssc +0 -0
  305. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_grid.scssc +0 -0
  306. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_input-groups.scssc +0 -0
  307. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_jumbotron.scssc +0 -0
  308. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_labels.scssc +0 -0
  309. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_list-group.scssc +0 -0
  310. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_media.scssc +0 -0
  311. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_mixins.scssc +0 -0
  312. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_modals.scssc +0 -0
  313. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_navbar.scssc +0 -0
  314. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_navs.scssc +0 -0
  315. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_normalize.scssc +0 -0
  316. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_pager.scssc +0 -0
  317. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_pagination.scssc +0 -0
  318. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_panels.scssc +0 -0
  319. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_popovers.scssc +0 -0
  320. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_print.scssc +0 -0
  321. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_progress-bars.scssc +0 -0
  322. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_responsive-embed.scssc +0 -0
  323. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_responsive-utilities.scssc +0 -0
  324. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_scaffolding.scssc +0 -0
  325. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_tables.scssc +0 -0
  326. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_thumbnails.scssc +0 -0
  327. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_tooltip.scssc +0 -0
  328. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_type.scssc +0 -0
  329. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_utilities.scssc +0 -0
  330. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_variables.scssc +0 -0
  331. data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_wells.scssc +0 -0
  332. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_alerts.scssc +0 -0
  333. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_background-variant.scssc +0 -0
  334. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_border-radius.scssc +0 -0
  335. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_buttons.scssc +0 -0
  336. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_center-block.scssc +0 -0
  337. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_clearfix.scssc +0 -0
  338. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_forms.scssc +0 -0
  339. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_gradients.scssc +0 -0
  340. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_grid-framework.scssc +0 -0
  341. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_grid.scssc +0 -0
  342. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_hide-text.scssc +0 -0
  343. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_image.scssc +0 -0
  344. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_labels.scssc +0 -0
  345. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_list-group.scssc +0 -0
  346. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_nav-divider.scssc +0 -0
  347. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_nav-vertical-align.scssc +0 -0
  348. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_opacity.scssc +0 -0
  349. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_pagination.scssc +0 -0
  350. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_panels.scssc +0 -0
  351. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_progress-bar.scssc +0 -0
  352. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_reset-filter.scssc +0 -0
  353. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_resize.scssc +0 -0
  354. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_responsive-visibility.scssc +0 -0
  355. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_size.scssc +0 -0
  356. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_tab-focus.scssc +0 -0
  357. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_table-row.scssc +0 -0
  358. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_text-emphasis.scssc +0 -0
  359. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_text-overflow.scssc +0 -0
  360. data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_vendor-prefixes.scssc +0 -0
  361. data/test/dummy/tmp/cache/assets/test/sass/f4632670e0618904d6cdfaa05215347dcf2fcba2/_bootstrap-sprockets.scssc +0 -0
  362. data/test/dummy/tmp/cache/assets/test/sass/f4632670e0618904d6cdfaa05215347dcf2fcba2/_bootstrap.scssc +0 -0
  363. data/test/dummy/tmp/cache/assets/test/sprockets/0b3bc7828f4a9fe07afe8f989474a5ec +0 -0
  364. data/test/dummy/tmp/cache/assets/test/sprockets/0d950fff852c8cc3816ea54eeb5a1b2a +0 -0
  365. data/test/dummy/tmp/cache/assets/test/sprockets/0ec737c7804927b87a778f1b8fd956a4 +0 -0
  366. data/test/dummy/tmp/cache/assets/test/sprockets/13d2a7feb53fc9b264c8f81d399ea58e +0 -0
  367. data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  368. data/test/dummy/tmp/cache/assets/test/sprockets/146dac6de2f351f56eeb983e57282736 +0 -0
  369. data/test/dummy/tmp/cache/assets/test/sprockets/1bda73f85ee45cdc3618869a34b453c4 +0 -0
  370. data/test/dummy/tmp/cache/assets/test/sprockets/23cf365c3ba440f92a8f991efbcfa6a8 +0 -0
  371. data/test/dummy/tmp/cache/assets/test/sprockets/2580ae76161b34d0884be8806320ca61 +0 -0
  372. data/test/dummy/tmp/cache/assets/test/sprockets/26131461f8b9e7a897ba3f7269ddb6b4 +0 -0
  373. data/test/dummy/tmp/cache/assets/test/sprockets/2770d71695c9a6f0c2bc160ad37db730 +0 -0
  374. data/test/dummy/tmp/cache/assets/test/sprockets/29ca5e3268edb180578eaa08ddd9915c +0 -0
  375. data/test/dummy/tmp/cache/assets/test/sprockets/2d665f9a2281c838d3d69f2b737902d3 +0 -0
  376. data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  377. data/test/dummy/tmp/cache/assets/test/sprockets/325360df43b85fca59b40b8762508af4 +0 -0
  378. data/test/dummy/tmp/cache/assets/test/sprockets/32f6bca48ffb4460dfd8f12fc1ef85a1 +0 -0
  379. data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  380. data/test/dummy/tmp/cache/assets/test/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
  381. data/test/dummy/tmp/cache/assets/test/sprockets/3b6ff5c4b970461fc3a4be5ac12d0b3d +0 -0
  382. data/test/dummy/tmp/cache/assets/test/sprockets/3b7a25bfd614ce14333ba7ed03937a55 +0 -0
  383. data/test/dummy/tmp/cache/assets/test/sprockets/3bc494fe8e4dc2c2b9781f7a811ee00f +0 -0
  384. data/test/dummy/tmp/cache/assets/test/sprockets/4050a4e5062ab95c9f32e9b6940821ea +0 -0
  385. data/test/dummy/tmp/cache/assets/test/sprockets/42fb7cef7cfa43cdd2b5b64b5c20b889 +0 -0
  386. data/test/dummy/tmp/cache/assets/test/sprockets/451a8fbb54a23dd3a5547a57f94df7e4 +0 -0
  387. data/test/dummy/tmp/cache/assets/test/sprockets/46b842cdfa1e5070d20314cbb332d59c +0 -0
  388. data/test/dummy/tmp/cache/assets/test/sprockets/4be5d609ea74e7b38e483d579dedd8d7 +0 -0
  389. data/test/dummy/tmp/cache/assets/test/sprockets/57551ea75456b809d737e62170040caf +0 -0
  390. data/test/dummy/tmp/cache/assets/test/sprockets/5c0bcb86ff5cdf72a4a29841434f88dc +0 -0
  391. data/test/dummy/tmp/cache/assets/test/sprockets/5dae5894de8c275b1254aaf067195921 +0 -0
  392. data/test/dummy/tmp/cache/assets/test/sprockets/5f1a0d05e77ca8b9a1fc2a47e17a8174 +0 -0
  393. data/test/dummy/tmp/cache/assets/test/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
  394. data/test/dummy/tmp/cache/assets/test/sprockets/707ab35c5250018368f3a9a4df4da449 +0 -0
  395. data/test/dummy/tmp/cache/assets/test/sprockets/73cfbca7c1b756843290765631f4a785 +0 -0
  396. data/test/dummy/tmp/cache/assets/test/sprockets/76163a3e3c27325fb0ff4ed780b94fe8 +0 -0
  397. data/test/dummy/tmp/cache/assets/test/sprockets/867ee69677cde04a7642174f04a7e034 +0 -0
  398. data/test/dummy/tmp/cache/assets/test/sprockets/87b209c0c9da28094a8d5581a21262c6 +0 -0
  399. data/test/dummy/tmp/cache/assets/test/sprockets/87d3d8a0e65a412e3adc455bc4bf0419 +0 -0
  400. data/test/dummy/tmp/cache/assets/test/sprockets/89b4e37ba66874fc6765f790cdc1aae3 +0 -0
  401. data/test/dummy/tmp/cache/assets/test/sprockets/8a389a2323475a7053fc419c4103814f +0 -0
  402. data/test/dummy/tmp/cache/assets/test/sprockets/8db1cfb543feba7dbf3b1ad076395681 +0 -0
  403. data/test/dummy/tmp/cache/assets/test/sprockets/9caabbfb306d294b869c0e5ef25ed6ad +0 -0
  404. data/test/dummy/tmp/cache/assets/test/sprockets/9d39f38ba45b0ec46cbbcf748d899172 +0 -0
  405. data/test/dummy/tmp/cache/assets/test/sprockets/9ff88e23342f6d1e65e3617390550c98 +0 -0
  406. data/test/dummy/tmp/cache/assets/test/sprockets/a17257ce0ba57baae100bbc3ceac5dfb +0 -0
  407. data/test/dummy/tmp/cache/assets/test/sprockets/a1dea2a2c7707388ed8ec70150c99735 +0 -0
  408. data/test/dummy/tmp/cache/assets/test/sprockets/a6ca6a84d389f9b81abc9b055b5cab79 +0 -0
  409. data/test/dummy/tmp/cache/assets/test/sprockets/ac893c1e97c4fca776b0fa76929a71ae +0 -0
  410. data/test/dummy/tmp/cache/assets/test/sprockets/b3a5c599251f7cf1f3e73174b9646986 +0 -0
  411. data/test/dummy/tmp/cache/assets/test/sprockets/b3e1ccf83e92a0235ec89cbc837925a6 +0 -0
  412. data/test/dummy/tmp/cache/assets/test/sprockets/b5f53e94b387e8f6c7cb791a9866d867 +0 -0
  413. data/test/dummy/tmp/cache/assets/test/sprockets/b644258792ab07998445a3a13c5346b0 +0 -0
  414. data/test/dummy/tmp/cache/assets/test/sprockets/b7ee934a0cfd8a77057075829e86b862 +0 -0
  415. data/test/dummy/tmp/cache/assets/test/sprockets/b9d280b317ea809834bd8cff91690afa +0 -0
  416. data/test/dummy/tmp/cache/assets/test/sprockets/bc384ffca623dd84dcc27426de8f538e +0 -0
  417. data/test/dummy/tmp/cache/assets/test/sprockets/bd25bf8269cb7fbc481ea93290e14619 +0 -0
  418. data/test/dummy/tmp/cache/assets/test/sprockets/c164999110702fe49d2672bf6c3f48c0 +0 -0
  419. data/test/dummy/tmp/cache/assets/test/sprockets/c27a3e2bd1de5e03ad3501c17fd7ecf1 +0 -0
  420. data/test/dummy/tmp/cache/assets/test/sprockets/c2d8c0856a19fd683b5f4d7704382aa2 +0 -0
  421. data/test/dummy/tmp/cache/assets/test/sprockets/c3ec335a67fd016e5f01916073c165b4 +0 -0
  422. data/test/dummy/tmp/cache/assets/test/sprockets/c57031591f8741c53c5c7431633997c4 +0 -0
  423. data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  424. data/test/dummy/tmp/cache/assets/test/sprockets/d039180b508a0299d4ac3f7fbf9662cd +0 -0
  425. data/test/dummy/tmp/cache/assets/test/sprockets/d2038f3ae034aa5d2baa6f1b7359ee02 +0 -0
  426. data/test/dummy/tmp/cache/assets/test/sprockets/d5862a08d88b337e70c13f403c3a0912 +0 -0
  427. data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  428. data/test/dummy/tmp/cache/assets/test/sprockets/dfa904f001d086cda03ebfac7fde7550 +0 -0
  429. data/test/dummy/tmp/cache/assets/test/sprockets/e7d4caf1fd93f94e35c0d70b4a16b308 +0 -0
  430. data/test/dummy/tmp/cache/assets/test/sprockets/edf7ee075b440ec3827ac0cdfde324b3 +0 -0
  431. data/test/dummy/tmp/cache/assets/test/sprockets/eee1420e123cd3e2ff3d3bd790d51cdf +0 -0
  432. data/test/dummy/tmp/cache/assets/test/sprockets/f0908aaef2c0165df00f19c66fa8ab50 +0 -0
  433. data/test/dummy/tmp/cache/assets/test/sprockets/f56253b5f374fff1a33fbbc9881c9124 +0 -0
  434. data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  435. data/test/dummy/tmp/cache/assets/test/sprockets/fcac08ebaff1499d385ec5712e1a218c +0 -0
  436. data/test/dummy/tmp/pids/server.pid +1 -0
  437. data/test/fixtures/bigmouth/articles.yml +9 -0
  438. data/test/fixtures/users.yml +4 -0
  439. data/test/integration/navigation_test.rb +10 -0
  440. data/test/models/bigmouth/article_test.rb +9 -0
  441. data/test/test_helper.rb +30 -0
  442. metadata +1126 -0
@@ -0,0 +1,1063 @@
1
+  (1.3ms) CREATE TABLE "bigmouth_articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
3
+  (0.1ms) select sqlite_version(*)
4
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.1ms) SELECT version FROM "schema_migrations"
6
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150125121829')
7
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
9
+  (1.2ms) CREATE TABLE "bigmouth_articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "author_id" integer) 
10
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
11
+  (0.1ms) select sqlite_version(*)
12
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
13
+  (0.2ms) SELECT version FROM "schema_migrations"
14
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20150126024751')
15
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
16
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
17
+ Migrating to CreateBigmouthArticles (20150125121829)
18
+  (0.1ms) begin transaction
19
+  (0.2ms) CREATE TABLE "bigmouth_articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
20
+ SQLite3::SQLException: table "bigmouth_articles" already exists: CREATE TABLE "bigmouth_articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
21
+  (0.1ms) rollback transaction
22
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
23
+  (1.2ms) CREATE TABLE "bigmouth_articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "author_id" integer) 
24
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
25
+  (0.1ms) select sqlite_version(*)
26
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
27
+  (0.1ms) SELECT version FROM "schema_migrations"
28
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150126024751')
29
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
30
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
31
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
32
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
33
+ Migrating to AddAuthorIdToBigmouthArticles (20150126024751)
34
+  (0.1ms) begin transaction
35
+  (1.5ms) CREATE TEMPORARY TABLE "abigmouth_articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "author_id" integer) 
36
+  (0.1ms) SELECT * FROM "bigmouth_articles"
37
+  (0.7ms) DROP TABLE "bigmouth_articles"
38
+  (0.1ms) CREATE TABLE "bigmouth_articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
39
+  (0.1ms) SELECT * FROM "abigmouth_articles"
40
+  (0.3ms) DROP TABLE "abigmouth_articles"
41
+ SQL (0.2ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = ? [["version", "20150126024751"]]
42
+  (1.1ms) commit transaction
43
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
44
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
45
+ Migrating to CreateBigmouthArticles (20150125121829)
46
+  (0.1ms) begin transaction
47
+  (0.1ms) CREATE TABLE "bigmouth_articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
48
+ SQLite3::SQLException: table "bigmouth_articles" already exists: CREATE TABLE "bigmouth_articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
49
+  (0.0ms) rollback transaction
50
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
51
+  (0.1ms) select sqlite_version(*)
52
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
53
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
54
+ Migrating to CreateBigmouthArticles (20150125121829)
55
+  (0.1ms) begin transaction
56
+  (0.5ms) CREATE TABLE "bigmouth_articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
57
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150125121829"]]
58
+  (0.8ms) commit transaction
59
+ Migrating to AddAuthorIdToBigmouthArticles (20150126024751)
60
+  (0.1ms) begin transaction
61
+  (0.4ms) ALTER TABLE "bigmouth_articles" ADD "author_id" integer
62
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150126024751"]]
63
+  (0.6ms) commit transaction
64
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
65
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
66
+  (0.1ms) begin transaction
67
+ ------------------------
68
+ BigmouthTest: test_truth
69
+ ------------------------
70
+  (0.0ms) rollback transaction
71
+  (0.0ms) begin transaction
72
+ ----------------------------------------------------------
73
+ Bigmouth::ArticlesControllerTest: test_should_show_article
74
+ ----------------------------------------------------------
75
+  (0.1ms) rollback transaction
76
+  (0.1ms) begin transaction
77
+ -------------------------------------------------------------
78
+ Bigmouth::ArticlesControllerTest: test_should_destroy_article
79
+ -------------------------------------------------------------
80
+  (0.0ms) rollback transaction
81
+  (0.0ms) begin transaction
82
+ -------------------------------------------------------
83
+ Bigmouth::ArticlesControllerTest: test_should_get_index
84
+ -------------------------------------------------------
85
+  (0.0ms) rollback transaction
86
+  (0.0ms) begin transaction
87
+ ------------------------------------------------------
88
+ Bigmouth::ArticlesControllerTest: test_should_get_edit
89
+ ------------------------------------------------------
90
+  (0.0ms) rollback transaction
91
+  (0.0ms) begin transaction
92
+ ------------------------------------------------------------
93
+ Bigmouth::ArticlesControllerTest: test_should_update_article
94
+ ------------------------------------------------------------
95
+  (0.0ms) rollback transaction
96
+  (0.1ms) begin transaction
97
+ -----------------------------------------------------
98
+ Bigmouth::ArticlesControllerTest: test_should_get_new
99
+ -----------------------------------------------------
100
+  (0.0ms) rollback transaction
101
+  (0.0ms) begin transaction
102
+ ------------------------------------------------------------
103
+ Bigmouth::ArticlesControllerTest: test_should_create_article
104
+ ------------------------------------------------------------
105
+  (0.0ms) rollback transaction
106
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
107
+  (0.1ms) begin transaction
108
+ -------------------------------------------------------
109
+ Bigmouth::ArticlesControllerTest: test_should_get_index
110
+ -------------------------------------------------------
111
+  (0.1ms) rollback transaction
112
+  (0.0ms) begin transaction
113
+ ------------------------
114
+ BigmouthTest: test_truth
115
+ ------------------------
116
+  (0.0ms) rollback transaction
117
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
118
+  (0.1ms) begin transaction
119
+ -------------------------------------------------------
120
+ Bigmouth::ArticlesControllerTest: test_should_get_index
121
+ -------------------------------------------------------
122
+  (0.1ms) rollback transaction
123
+  (0.0ms) begin transaction
124
+ ------------------------
125
+ BigmouthTest: test_truth
126
+ ------------------------
127
+  (0.0ms) rollback transaction
128
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
129
+  (0.1ms) begin transaction
130
+ -------------------------------------------------------
131
+ Bigmouth::ArticlesControllerTest: test_should_get_index
132
+ -------------------------------------------------------
133
+  (0.1ms) rollback transaction
134
+  (0.1ms) begin transaction
135
+ ------------------------
136
+ BigmouthTest: test_truth
137
+ ------------------------
138
+  (0.0ms) rollback transaction
139
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
140
+  (0.1ms) begin transaction
141
+ -------------------------------------------------------
142
+ Bigmouth::ArticlesControllerTest: test_should_get_index
143
+ -------------------------------------------------------
144
+  (0.1ms) rollback transaction
145
+  (0.0ms) begin transaction
146
+ ------------------------
147
+ BigmouthTest: test_truth
148
+ ------------------------
149
+  (0.0ms) rollback transaction
150
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
151
+  (0.1ms) begin transaction
152
+ ------------------------
153
+ BigmouthTest: test_truth
154
+ ------------------------
155
+  (0.0ms) rollback transaction
156
+  (0.0ms) begin transaction
157
+ -------------------------------------------------------
158
+ Bigmouth::ArticlesControllerTest: test_should_get_index
159
+ -------------------------------------------------------
160
+  (0.1ms) rollback transaction
161
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
162
+  (0.1ms) begin transaction
163
+ ------------------------
164
+ BigmouthTest: test_truth
165
+ ------------------------
166
+  (0.0ms) rollback transaction
167
+  (0.1ms) begin transaction
168
+ -------------------------------------------------------
169
+ Bigmouth::ArticlesControllerTest: test_should_get_index
170
+ -------------------------------------------------------
171
+  (0.1ms) rollback transaction
172
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
173
+  (0.1ms) begin transaction
174
+ ------------------------
175
+ BigmouthTest: test_truth
176
+ ------------------------
177
+  (0.0ms) rollback transaction
178
+  (0.1ms) begin transaction
179
+ -------------------------------------------------------
180
+ Bigmouth::ArticlesControllerTest: test_should_get_index
181
+ -------------------------------------------------------
182
+  (0.1ms) rollback transaction
183
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
184
+  (0.1ms) begin transaction
185
+ -------------------------------------------------------
186
+ Bigmouth::ArticlesControllerTest: test_should_get_index
187
+ -------------------------------------------------------
188
+ Processing by Bigmouth::ArticlesController#index as HTML
189
+ Completed 500 Internal Server Error in 3ms
190
+  (0.1ms) rollback transaction
191
+  (0.0ms) begin transaction
192
+ ------------------------
193
+ BigmouthTest: test_truth
194
+ ------------------------
195
+  (0.0ms) rollback transaction
196
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
197
+  (0.2ms) begin transaction
198
+ -------------------------------------------------------
199
+ Bigmouth::ArticlesControllerTest: test_should_get_index
200
+ -------------------------------------------------------
201
+  (0.1ms) rollback transaction
202
+  (0.0ms) begin transaction
203
+ ------------------------
204
+ BigmouthTest: test_truth
205
+ ------------------------
206
+  (0.0ms) rollback transaction
207
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
208
+  (0.1ms) begin transaction
209
+ ------------------------
210
+ BigmouthTest: test_truth
211
+ ------------------------
212
+  (0.0ms) rollback transaction
213
+  (0.0ms) begin transaction
214
+ -------------------------------------------------------
215
+ Bigmouth::ArticlesControllerTest: test_should_get_index
216
+ -------------------------------------------------------
217
+  (0.1ms) rollback transaction
218
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
219
+  (0.1ms) begin transaction
220
+ ------------------------
221
+ BigmouthTest: test_truth
222
+ ------------------------
223
+  (0.0ms) rollback transaction
224
+  (0.0ms) begin transaction
225
+ -------------------------------------------------------
226
+ Bigmouth::ArticlesControllerTest: test_should_get_index
227
+ -------------------------------------------------------
228
+  (0.1ms) rollback transaction
229
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
230
+  (0.1ms) begin transaction
231
+ -------------------------------------------------------
232
+ Bigmouth::ArticlesControllerTest: test_should_get_index
233
+ -------------------------------------------------------
234
+ Processing by Bigmouth::ArticlesController#index as HTML
235
+ Completed 500 Internal Server Error in 5ms
236
+  (0.1ms) rollback transaction
237
+  (0.1ms) begin transaction
238
+ ------------------------
239
+ BigmouthTest: test_truth
240
+ ------------------------
241
+  (0.0ms) rollback transaction
242
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
243
+  (0.1ms) begin transaction
244
+ ------------------------
245
+ BigmouthTest: test_truth
246
+ ------------------------
247
+  (0.0ms) rollback transaction
248
+  (0.0ms) begin transaction
249
+ -------------------------------------------------------
250
+ Bigmouth::ArticlesControllerTest: test_should_get_index
251
+ -------------------------------------------------------
252
+  (0.1ms) rollback transaction
253
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
254
+  (0.2ms) begin transaction
255
+ ------------------------
256
+ BigmouthTest: test_truth
257
+ ------------------------
258
+  (0.1ms) rollback transaction
259
+  (0.1ms) begin transaction
260
+ -------------------------------------------------------
261
+ Bigmouth::ArticlesControllerTest: test_should_get_index
262
+ -------------------------------------------------------
263
+ Processing by Bigmouth::ArticlesController#index as HTML
264
+ Completed 500 Internal Server Error in 2ms
265
+  (0.1ms) rollback transaction
266
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
267
+  (0.2ms) begin transaction
268
+ -------------------------------------------------------
269
+ Bigmouth::ArticlesControllerTest: test_should_get_index
270
+ -------------------------------------------------------
271
+  (0.1ms) rollback transaction
272
+  (0.0ms) begin transaction
273
+ ------------------------
274
+ BigmouthTest: test_truth
275
+ ------------------------
276
+  (0.0ms) rollback transaction
277
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
278
+  (0.1ms) begin transaction
279
+ -------------------------------------------------------
280
+ Bigmouth::ArticlesControllerTest: test_should_get_index
281
+ -------------------------------------------------------
282
+  (0.1ms) rollback transaction
283
+  (0.0ms) begin transaction
284
+ ------------------------
285
+ BigmouthTest: test_truth
286
+ ------------------------
287
+  (0.0ms) rollback transaction
288
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
289
+  (0.1ms) begin transaction
290
+ -------------------------------------------------------
291
+ Bigmouth::ArticlesControllerTest: test_should_get_index
292
+ -------------------------------------------------------
293
+  (0.1ms) rollback transaction
294
+  (0.0ms) begin transaction
295
+ ------------------------
296
+ BigmouthTest: test_truth
297
+ ------------------------
298
+  (0.0ms) rollback transaction
299
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
300
+  (0.1ms) begin transaction
301
+ -------------------------------------------------------
302
+ Bigmouth::ArticlesControllerTest: test_should_get_index
303
+ -------------------------------------------------------
304
+ Processing by Bigmouth::ArticlesController#index as HTML
305
+ Completed 500 Internal Server Error in 2ms
306
+  (0.1ms) rollback transaction
307
+  (0.1ms) begin transaction
308
+ ------------------------
309
+ BigmouthTest: test_truth
310
+ ------------------------
311
+  (0.0ms) rollback transaction
312
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
313
+  (0.1ms) begin transaction
314
+ -------------------------------------------------------
315
+ Bigmouth::ArticlesControllerTest: test_should_get_index
316
+ -------------------------------------------------------
317
+ Processing by Bigmouth::ArticlesController#index as HTML
318
+ Completed 500 Internal Server Error in 1ms
319
+  (0.1ms) rollback transaction
320
+  (0.0ms) begin transaction
321
+ ------------------------
322
+ BigmouthTest: test_truth
323
+ ------------------------
324
+  (0.1ms) rollback transaction
325
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
326
+  (0.1ms) begin transaction
327
+ ------------------------
328
+ BigmouthTest: test_truth
329
+ ------------------------
330
+  (0.1ms) rollback transaction
331
+  (0.1ms) begin transaction
332
+ -------------------------------------------------------
333
+ Bigmouth::ArticlesControllerTest: test_should_get_index
334
+ -------------------------------------------------------
335
+ Processing by Bigmouth::ArticlesController#index as HTML
336
+ Completed 500 Internal Server Error in 2ms
337
+  (0.1ms) rollback transaction
338
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
339
+  (0.1ms) begin transaction
340
+ -------------------------------------------------------
341
+ Bigmouth::ArticlesControllerTest: test_should_get_index
342
+ -------------------------------------------------------
343
+ Processing by Bigmouth::ArticlesController#index as HTML
344
+ Completed 500 Internal Server Error in 2ms
345
+  (0.1ms) rollback transaction
346
+  (0.0ms) begin transaction
347
+ ------------------------
348
+ BigmouthTest: test_truth
349
+ ------------------------
350
+  (0.0ms) rollback transaction
351
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
352
+  (0.1ms) begin transaction
353
+ ------------------------
354
+ BigmouthTest: test_truth
355
+ ------------------------
356
+  (0.1ms) rollback transaction
357
+  (0.1ms) begin transaction
358
+ -------------------------------------------------------
359
+ Bigmouth::ArticlesControllerTest: test_should_get_index
360
+ -------------------------------------------------------
361
+  (0.1ms) rollback transaction
362
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
363
+  (0.1ms) begin transaction
364
+ -------------------------------------------------------
365
+ Bigmouth::ArticlesControllerTest: test_should_get_index
366
+ -------------------------------------------------------
367
+ Processing by Bigmouth::ArticlesController#index as HTML
368
+ Completed 500 Internal Server Error in 2ms
369
+  (0.1ms) rollback transaction
370
+  (0.1ms) begin transaction
371
+ ------------------------
372
+ BigmouthTest: test_truth
373
+ ------------------------
374
+  (0.0ms) rollback transaction
375
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
376
+  (0.2ms) begin transaction
377
+ ------------------------
378
+ BigmouthTest: test_truth
379
+ ------------------------
380
+  (0.1ms) rollback transaction
381
+  (0.1ms) begin transaction
382
+ -------------------------------------------------------
383
+ Bigmouth::ArticlesControllerTest: test_should_get_index
384
+ -------------------------------------------------------
385
+ Processing by Bigmouth::ArticlesController#index as HTML
386
+ Completed 500 Internal Server Error in 2ms
387
+  (0.1ms) rollback transaction
388
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
389
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
390
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
391
+  (0.2ms) begin transaction
392
+ Fixture Delete (0.9ms) DELETE FROM "bigmouth_articles"
393
+ Fixture Insert (4.4ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 02:31:10', '2015-01-29 02:31:10', 980190962)
394
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 02:31:10', '2015-01-29 02:31:10', 298486374)
395
+  (0.7ms) commit transaction
396
+  (0.1ms) begin transaction
397
+ ------------------------
398
+ BigmouthTest: test_truth
399
+ ------------------------
400
+  (0.1ms) rollback transaction
401
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
402
+  (0.1ms) begin transaction
403
+ Fixture Delete (0.6ms) DELETE FROM "bigmouth_articles"
404
+ Fixture Insert (0.3ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 02:32:13', '2015-01-29 02:32:13', 980190962)
405
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 02:32:13', '2015-01-29 02:32:13', 298486374)
406
+  (0.6ms) commit transaction
407
+  (0.0ms) begin transaction
408
+ ------------------------
409
+ BigmouthTest: test_truth
410
+ ------------------------
411
+  (0.0ms) rollback transaction
412
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
413
+  (0.1ms) begin transaction
414
+ Fixture Delete (0.7ms) DELETE FROM "bigmouth_articles"
415
+ Fixture Insert (0.3ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 02:34:55', '2015-01-29 02:34:55', 980190962)
416
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 02:34:55', '2015-01-29 02:34:55', 298486374)
417
+  (2.2ms) commit transaction
418
+  (0.0ms) begin transaction
419
+ -------------------------------------------------------
420
+ Bigmouth::ArticlesControllerTest: test_should_get_index
421
+ -------------------------------------------------------
422
+  (0.1ms) rollback transaction
423
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
424
+  (0.1ms) begin transaction
425
+ ------------------------
426
+ BigmouthTest: test_truth
427
+ ------------------------
428
+  (0.0ms) rollback transaction
429
+  (0.0ms) begin transaction
430
+ -------------------------------------------------------
431
+ Bigmouth::ArticlesControllerTest: test_should_get_index
432
+ -------------------------------------------------------
433
+  (0.1ms) rollback transaction
434
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
435
+  (0.2ms) begin transaction
436
+ ------------------------
437
+ BigmouthTest: test_truth
438
+ ------------------------
439
+  (0.1ms) rollback transaction
440
+  (0.1ms) begin transaction
441
+ -------------------------------------------------------
442
+ Bigmouth::ArticlesControllerTest: test_should_get_index
443
+ -------------------------------------------------------
444
+  (0.1ms) rollback transaction
445
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
446
+  (0.1ms) begin transaction
447
+ Fixture Delete (0.8ms) DELETE FROM "bigmouth_articles"
448
+ Fixture Insert (0.5ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 02:54:32', '2015-01-29 02:54:32', 980190962)
449
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 02:54:32', '2015-01-29 02:54:32', 298486374)
450
+  (0.9ms) commit transaction
451
+  (0.1ms) begin transaction
452
+ -------------------------------------------------------
453
+ Bigmouth::ArticlesControllerTest: test_should_get_index
454
+ -------------------------------------------------------
455
+ Bigmouth::Article Load (0.3ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
456
+  (0.2ms) rollback transaction
457
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
458
+  (0.1ms) begin transaction
459
+ ------------------------
460
+ BigmouthTest: test_truth
461
+ ------------------------
462
+  (0.0ms) rollback transaction
463
+  (0.0ms) begin transaction
464
+ -------------------------------------------------------
465
+ Bigmouth::ArticlesControllerTest: test_should_get_index
466
+ -------------------------------------------------------
467
+  (0.1ms) rollback transaction
468
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
469
+  (0.1ms) begin transaction
470
+ Fixture Delete (0.2ms) DELETE FROM "bigmouth_articles"
471
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 02:57:51', '2015-01-29 02:57:51', 980190962)
472
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 02:57:51', '2015-01-29 02:57:51', 298486374)
473
+  (4.7ms) commit transaction
474
+  (0.0ms) begin transaction
475
+ ------------------------
476
+ BigmouthTest: test_truth
477
+ ------------------------
478
+  (0.0ms) rollback transaction
479
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
480
+  (1.3ms) CREATE TABLE "bigmouth_articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "author_id" integer) 
481
+  (0.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar NOT NULL, "crypted_password" varchar, "salt" varchar, "created_at" datetime, "updated_at" datetime)
482
+  (0.1ms) select sqlite_version(*)
483
+  (5.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
484
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
485
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
486
+  (0.1ms) SELECT version FROM "schema_migrations"
487
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150129053810')
488
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
489
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
490
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
491
+  (0.3ms)  SELECT sql
492
+ FROM sqlite_master
493
+ WHERE name='index_users_on_email' AND type='index'
494
+ UNION ALL
495
+ SELECT sql
496
+ FROM sqlite_temp_master
497
+ WHERE name='index_users_on_email' AND type='index'
498
+ 
499
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
500
+  (5.2ms) CREATE TABLE "bigmouth_articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "author_id" integer) 
501
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar NOT NULL, "crypted_password" varchar, "salt" varchar, "created_at" datetime, "updated_at" datetime)
502
+  (0.1ms) select sqlite_version(*)
503
+  (0.9ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
504
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
505
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
506
+  (0.1ms) SELECT version FROM "schema_migrations"
507
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150129053810')
508
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
509
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
510
+ Migrating to CreateBigmouthArticles (20150125121829)
511
+  (0.1ms) begin transaction
512
+  (0.1ms) CREATE TABLE "bigmouth_articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
513
+ SQLite3::SQLException: table "bigmouth_articles" already exists: CREATE TABLE "bigmouth_articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
514
+  (0.0ms) rollback transaction
515
+  (5.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
516
+  (0.1ms) select sqlite_version(*)
517
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
518
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
519
+ Migrating to CreateBigmouthArticles (20150125121829)
520
+  (0.1ms) begin transaction
521
+  (0.7ms) CREATE TABLE "bigmouth_articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
522
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150125121829"]]
523
+  (4.9ms) commit transaction
524
+ Migrating to AddAuthorIdToBigmouthArticles (20150126024751)
525
+  (0.5ms) begin transaction
526
+  (0.7ms) ALTER TABLE "bigmouth_articles" ADD "author_id" integer
527
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150126024751"]]
528
+  (0.7ms) commit transaction
529
+ Migrating to SorceryCore (20150129053810)
530
+  (0.1ms) begin transaction
531
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar NOT NULL, "crypted_password" varchar, "salt" varchar, "created_at" datetime, "updated_at" datetime)
532
+  (0.6ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
533
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150129053810"]]
534
+  (0.8ms) commit transaction
535
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
536
+  (0.2ms)  SELECT sql
537
+ FROM sqlite_master
538
+ WHERE name='index_users_on_email' AND type='index'
539
+ UNION ALL
540
+ SELECT sql
541
+ FROM sqlite_temp_master
542
+ WHERE name='index_users_on_email' AND type='index'
543
+ 
544
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
545
+  (0.1ms) begin transaction
546
+ Fixture Delete (0.7ms) DELETE FROM "bigmouth_articles"
547
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:42:30', '2015-01-29 06:42:30', 980190962)
548
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:42:30', '2015-01-29 06:42:30', 298486374)
549
+  (0.8ms) commit transaction
550
+  (0.0ms) begin transaction
551
+ ----------------------------------------
552
+ UsersControllerTest: test_should_get_new
553
+ ----------------------------------------
554
+  (0.1ms) rollback transaction
555
+  (0.0ms) begin transaction
556
+ --------------------------------------------
557
+ UsersControllerTest: test_should_update_user
558
+ --------------------------------------------
559
+  (0.0ms) rollback transaction
560
+  (0.0ms) begin transaction
561
+ ------------------------------------------
562
+ UsersControllerTest: test_should_get_index
563
+ ------------------------------------------
564
+  (0.0ms) rollback transaction
565
+  (0.1ms) begin transaction
566
+ -----------------------------------------
567
+ UsersControllerTest: test_should_get_edit
568
+ -----------------------------------------
569
+  (0.0ms) rollback transaction
570
+  (0.0ms) begin transaction
571
+ --------------------------------------------
572
+ UsersControllerTest: test_should_create_user
573
+ --------------------------------------------
574
+  (0.0ms) rollback transaction
575
+  (0.0ms) begin transaction
576
+ ---------------------------------------------
577
+ UsersControllerTest: test_should_destroy_user
578
+ ---------------------------------------------
579
+  (0.0ms) rollback transaction
580
+  (0.0ms) begin transaction
581
+ ------------------------------------------
582
+ UsersControllerTest: test_should_show_user
583
+ ------------------------------------------
584
+  (0.0ms) rollback transaction
585
+  (0.0ms) begin transaction
586
+ -----------------------------------------------
587
+ SessionsControllerTest: test_should_get_destroy
588
+ -----------------------------------------------
589
+ Processing by SessionsController#destroy as HTML
590
+ Redirected to http://test.host/login
591
+ Filter chain halted as :require_login rendered or redirected
592
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
593
+  (0.1ms) rollback transaction
594
+  (0.0ms) begin transaction
595
+ ----------------------------------------------
596
+ SessionsControllerTest: test_should_get_create
597
+ ----------------------------------------------
598
+ Processing by SessionsController#create as HTML
599
+ Rendered sessions/_form.html.erb (1.9ms)
600
+ Rendered sessions/new.html.erb within layouts/application (44.7ms)
601
+ Completed 200 OK in 135ms (Views: 109.1ms | ActiveRecord: 0.0ms)
602
+  (0.1ms) rollback transaction
603
+  (0.1ms) begin transaction
604
+ -------------------------------------------
605
+ SessionsControllerTest: test_should_get_new
606
+ -------------------------------------------
607
+ Processing by SessionsController#new as HTML
608
+ Rendered sessions/_form.html.erb (0.4ms)
609
+ Rendered sessions/new.html.erb within layouts/application (0.6ms)
610
+ Completed 200 OK in 5ms (Views: 1.2ms | ActiveRecord: 0.2ms)
611
+  (0.1ms) rollback transaction
612
+  (0.0ms) begin transaction
613
+ ------------------------
614
+ BigmouthTest: test_truth
615
+ ------------------------
616
+  (0.0ms) rollback transaction
617
+  (0.0ms) begin transaction
618
+ -------------------------------------------------------
619
+ Bigmouth::ArticlesControllerTest: test_should_get_index
620
+ -------------------------------------------------------
621
+ Bigmouth::Article Load (0.3ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
622
+  (0.1ms) rollback transaction
623
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
624
+  (0.1ms) begin transaction
625
+ Fixture Delete (0.3ms) DELETE FROM "bigmouth_articles"
626
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:45:10', '2015-01-29 06:45:10', 980190962)
627
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:45:10', '2015-01-29 06:45:10', 298486374)
628
+  (5.0ms) commit transaction
629
+  (0.1ms) begin transaction
630
+ ------------------------
631
+ BigmouthTest: test_truth
632
+ ------------------------
633
+  (0.0ms) rollback transaction
634
+  (0.0ms) begin transaction
635
+ -------------------------------------------------------
636
+ Bigmouth::ArticlesControllerTest: test_should_get_index
637
+ -------------------------------------------------------
638
+ Bigmouth::Article Load (0.2ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
639
+  (0.1ms) rollback transaction
640
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
641
+  (0.1ms) begin transaction
642
+ Fixture Delete (0.6ms) DELETE FROM "bigmouth_articles"
643
+ Fixture Insert (0.4ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:47:25', '2015-01-29 06:47:25', 980190962)
644
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:47:25', '2015-01-29 06:47:25', 298486374)
645
+  (0.6ms) commit transaction
646
+  (0.0ms) begin transaction
647
+ -------------------------------------------------------
648
+ Bigmouth::ArticlesControllerTest: test_should_get_index
649
+ -------------------------------------------------------
650
+ Bigmouth::Article Load (0.2ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
651
+ Processing by Bigmouth::ArticlesController#index as HTML
652
+ Bigmouth::Article Load (0.1ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles"
653
+ Rendered /Users/mubae/Desktop/bigmouth/app/views/bigmouth/articles/index.html.slim within layouts/application (38.4ms)
654
+ Completed 200 OK in 73ms (Views: 72.5ms | ActiveRecord: 0.1ms)
655
+  (0.1ms) rollback transaction
656
+  (0.0ms) begin transaction
657
+ ------------------------
658
+ BigmouthTest: test_truth
659
+ ------------------------
660
+  (0.0ms) rollback transaction
661
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
662
+  (0.1ms) begin transaction
663
+ Fixture Delete (0.2ms) DELETE FROM "bigmouth_articles"
664
+ Fixture Insert (0.3ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:49:30', '2015-01-29 06:49:30', 980190962)
665
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:49:30', '2015-01-29 06:49:30', 298486374)
666
+  (1.3ms) commit transaction
667
+  (0.1ms) begin transaction
668
+ ------------------------
669
+ BigmouthTest: test_truth
670
+ ------------------------
671
+  (0.1ms) rollback transaction
672
+  (0.1ms) begin transaction
673
+ -------------------------------------------------------
674
+ Bigmouth::ArticlesControllerTest: test_should_get_index
675
+ -------------------------------------------------------
676
+ Bigmouth::Article Load (0.2ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
677
+ Processing by Bigmouth::ArticlesController#index as HTML
678
+ Bigmouth::Article Load (0.2ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles"
679
+ Rendered /Users/mubae/Desktop/bigmouth/app/views/bigmouth/articles/index.html.slim within layouts/application (28.5ms)
680
+ Completed 200 OK in 50ms (Views: 49.3ms | ActiveRecord: 0.2ms)
681
+  (0.1ms) rollback transaction
682
+  (0.0ms) begin transaction
683
+ -----------------------------------------------------
684
+ Bigmouth::ArticlesControllerTest: test_should_get_new
685
+ -----------------------------------------------------
686
+ Bigmouth::Article Load (0.1ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
687
+ Processing by Bigmouth::ArticlesController#new as HTML
688
+ Redirected to http://test.host/blog/
689
+ Filter chain halted as :action_requires_login rendered or redirected
690
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
691
+  (0.1ms) rollback transaction
692
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
693
+  (0.1ms) begin transaction
694
+ Fixture Delete (5.1ms) DELETE FROM "bigmouth_articles"
695
+ Fixture Insert (0.6ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:52:06', '2015-01-29 06:52:06', 980190962)
696
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:52:06', '2015-01-29 06:52:06', 298486374)
697
+ Fixture Delete (0.2ms) DELETE FROM "bigmouth_users"
698
+ SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
699
+  (0.6ms) rollback transaction
700
+  (0.1ms) begin transaction
701
+ Fixture Delete (0.2ms) DELETE FROM "bigmouth_articles"
702
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:52:06', '2015-01-29 06:52:06', 980190962)
703
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:52:06', '2015-01-29 06:52:06', 298486374)
704
+ Fixture Delete (0.2ms) DELETE FROM "bigmouth_users"
705
+ SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
706
+  (4.8ms) rollback transaction
707
+  (0.1ms) begin transaction
708
+ Fixture Delete (0.3ms) DELETE FROM "bigmouth_articles"
709
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:52:06', '2015-01-29 06:52:06', 980190962)
710
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:52:06', '2015-01-29 06:52:06', 298486374)
711
+ Fixture Delete (0.1ms) DELETE FROM "bigmouth_users"
712
+ SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
713
+  (4.6ms) rollback transaction
714
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
715
+  (0.1ms) begin transaction
716
+ Fixture Delete (5.2ms) DELETE FROM "bigmouth_articles"
717
+ Fixture Insert (0.5ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:52:42', '2015-01-29 06:52:42', 980190962)
718
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:52:42', '2015-01-29 06:52:42', 298486374)
719
+ Fixture Delete (0.2ms) DELETE FROM "bigmouth_users"
720
+ SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
721
+  (0.5ms) rollback transaction
722
+  (0.1ms) begin transaction
723
+ Fixture Delete (0.3ms) DELETE FROM "bigmouth_articles"
724
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:52:42', '2015-01-29 06:52:42', 980190962)
725
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:52:42', '2015-01-29 06:52:42', 298486374)
726
+ Fixture Delete (0.1ms) DELETE FROM "bigmouth_users"
727
+ SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
728
+  (4.3ms) rollback transaction
729
+  (0.1ms) begin transaction
730
+ Fixture Delete (0.3ms) DELETE FROM "bigmouth_articles"
731
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:52:42', '2015-01-29 06:52:42', 980190962)
732
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:52:42', '2015-01-29 06:52:42', 298486374)
733
+ Fixture Delete (0.1ms) DELETE FROM "bigmouth_users"
734
+ SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
735
+  (4.5ms) rollback transaction
736
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
737
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
738
+  (0.2ms)  SELECT sql
739
+ FROM sqlite_master
740
+ WHERE name='index_users_on_email' AND type='index'
741
+ UNION ALL
742
+ SELECT sql
743
+ FROM sqlite_temp_master
744
+ WHERE name='index_users_on_email' AND type='index'
745
+ 
746
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
747
+  (0.1ms) begin transaction
748
+ Fixture Delete (0.3ms) DELETE FROM "bigmouth_articles"
749
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:53:20', '2015-01-29 06:53:20', 980190962)
750
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:53:20', '2015-01-29 06:53:20', 298486374)
751
+ Fixture Delete (0.1ms) DELETE FROM "bigmouth_users"
752
+ SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
753
+  (4.6ms) rollback transaction
754
+  (0.1ms) begin transaction
755
+ Fixture Delete (0.2ms) DELETE FROM "bigmouth_articles"
756
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:53:20', '2015-01-29 06:53:20', 980190962)
757
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:53:20', '2015-01-29 06:53:20', 298486374)
758
+ Fixture Delete (0.1ms) DELETE FROM "bigmouth_users"
759
+ SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
760
+  (4.5ms) rollback transaction
761
+  (0.1ms) begin transaction
762
+ Fixture Delete (0.2ms) DELETE FROM "bigmouth_articles"
763
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:53:20', '2015-01-29 06:53:20', 980190962)
764
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:53:20', '2015-01-29 06:53:20', 298486374)
765
+ Fixture Delete (0.1ms) DELETE FROM "bigmouth_users"
766
+ SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
767
+  (4.7ms) rollback transaction
768
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
769
+  (0.1ms) begin transaction
770
+ Fixture Delete (0.3ms) DELETE FROM "bigmouth_articles"
771
+ Fixture Insert (0.7ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:57:10', '2015-01-29 06:57:10', 980190962)
772
+ Fixture Insert (0.3ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:57:10', '2015-01-29 06:57:10', 298486374)
773
+ Fixture Delete (0.3ms) DELETE FROM "bigmouth_users"
774
+ SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
775
+  (0.8ms) rollback transaction
776
+  (0.1ms) begin transaction
777
+ Fixture Delete (0.3ms) DELETE FROM "bigmouth_articles"
778
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:57:10', '2015-01-29 06:57:10', 980190962)
779
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:57:10', '2015-01-29 06:57:10', 298486374)
780
+ Fixture Delete (0.3ms) DELETE FROM "bigmouth_users"
781
+ SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
782
+  (2.0ms) rollback transaction
783
+  (0.1ms) begin transaction
784
+ Fixture Delete (0.4ms) DELETE FROM "bigmouth_articles"
785
+ Fixture Insert (0.2ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:57:11', '2015-01-29 06:57:11', 980190962)
786
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:57:11', '2015-01-29 06:57:11', 298486374)
787
+ Fixture Delete (0.2ms) DELETE FROM "bigmouth_users"
788
+ SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
789
+  (4.5ms) rollback transaction
790
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
791
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
792
+  (0.2ms)  SELECT sql
793
+ FROM sqlite_master
794
+ WHERE name='index_users_on_email' AND type='index'
795
+ UNION ALL
796
+ SELECT sql
797
+ FROM sqlite_temp_master
798
+ WHERE name='index_users_on_email' AND type='index'
799
+ 
800
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
801
+  (0.1ms) begin transaction
802
+ Fixture Delete (0.3ms) DELETE FROM "bigmouth_articles"
803
+ Fixture Insert (0.7ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:58:43', '2015-01-29 06:58:43', 980190962)
804
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:58:43', '2015-01-29 06:58:43', 298486374)
805
+ Fixture Delete (0.5ms) DELETE FROM "users"
806
+ Fixture Insert (0.2ms) INSERT INTO "users" ("email", "salt", "crypted_password", "created_at", "updated_at", "id") VALUES ('testuser@example.com', 'asdasdastr4325234324sdfds', '$2a$10$i2Rq74ZuA9GNmXySkKqgQOeUcJSlcFrrxG29pHm6sFCBap3usAUoS', '2015-01-29 06:58:43', '2015-01-29 06:58:43', 980190962)
807
+  (3.5ms) commit transaction
808
+  (0.1ms) begin transaction
809
+ ------------------------
810
+ BigmouthTest: test_truth
811
+ ------------------------
812
+  (0.1ms) rollback transaction
813
+  (0.1ms) begin transaction
814
+ -------------------------------------------------------
815
+ Bigmouth::ArticlesControllerTest: test_should_get_index
816
+ -------------------------------------------------------
817
+ Bigmouth::Article Load (0.2ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
818
+  (0.1ms) rollback transaction
819
+  (0.0ms) begin transaction
820
+ ---------------------------------------------------------------------
821
+ Bigmouth::ArticlesControllerTest: test_should_get_new_when_logging_in
822
+ ---------------------------------------------------------------------
823
+ Bigmouth::Article Load (0.1ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
824
+  (0.1ms) rollback transaction
825
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
826
+  (0.1ms) begin transaction
827
+ Fixture Delete (0.3ms) DELETE FROM "bigmouth_articles"
828
+ Fixture Insert (0.3ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:58:54', '2015-01-29 06:58:54', 980190962)
829
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:58:54', '2015-01-29 06:58:54', 298486374)
830
+ Fixture Delete (0.2ms) DELETE FROM "users"
831
+ Fixture Insert (0.1ms) INSERT INTO "users" ("email", "salt", "crypted_password", "created_at", "updated_at", "id") VALUES ('testuser@example.com', 'asdasdastr4325234324sdfds', '$2a$10$BjeS71h5qQGO7c5sGsxvTe1vfCeG/GZ9Q8tEFou110WcsNQvT8.cW', '2015-01-29 06:58:54', '2015-01-29 06:58:54', 980190962)
832
+  (5.2ms) commit transaction
833
+  (0.1ms) begin transaction
834
+ ------------------------
835
+ BigmouthTest: test_truth
836
+ ------------------------
837
+  (0.1ms) rollback transaction
838
+  (0.1ms) begin transaction
839
+ -------------------------------------------------------
840
+ Bigmouth::ArticlesControllerTest: test_should_get_index
841
+ -------------------------------------------------------
842
+ Bigmouth::Article Load (0.2ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
843
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
844
+ Processing by Bigmouth::ArticlesController#index as HTML
845
+ Bigmouth::Article Load (0.1ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles"
846
+ Rendered /Users/mubae/Desktop/bigmouth/app/views/bigmouth/articles/index.html.slim within layouts/application (28.9ms)
847
+ Completed 200 OK in 56ms (Views: 55.6ms | ActiveRecord: 0.1ms)
848
+  (0.1ms) rollback transaction
849
+  (0.1ms) begin transaction
850
+ ---------------------------------------------------------------------
851
+ Bigmouth::ArticlesControllerTest: test_should_get_new_when_logging_in
852
+ ---------------------------------------------------------------------
853
+ Bigmouth::Article Load (0.1ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
854
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
855
+  (0.1ms) rollback transaction
856
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
857
+  (0.1ms) begin transaction
858
+ Fixture Delete (0.3ms) DELETE FROM "bigmouth_articles"
859
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:59:59', '2015-01-29 06:59:59', 980190962)
860
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 06:59:59', '2015-01-29 06:59:59', 298486374)
861
+ Fixture Delete (0.1ms) DELETE FROM "users"
862
+ Fixture Insert (0.1ms) INSERT INTO "users" ("email", "salt", "crypted_password", "created_at", "updated_at", "id") VALUES ('testuser@example.com', 'asdasdastr4325234324sdfds', '$2a$10$ckXOZT2.HdWThlowmV1XwuYew09bYRzndob8AR2LMyssnnsvmLK4.', '2015-01-29 06:59:59', '2015-01-29 06:59:59', 980190962)
863
+  (5.3ms) commit transaction
864
+  (0.1ms) begin transaction
865
+ ------------------------
866
+ BigmouthTest: test_truth
867
+ ------------------------
868
+  (0.0ms) rollback transaction
869
+  (0.1ms) begin transaction
870
+ -------------------------------------------------------
871
+ Bigmouth::ArticlesControllerTest: test_should_get_index
872
+ -------------------------------------------------------
873
+ Bigmouth::Article Load (0.2ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
874
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
875
+ Processing by Bigmouth::ArticlesController#index as HTML
876
+ Bigmouth::Article Load (0.1ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles"
877
+ Rendered /Users/mubae/Desktop/bigmouth/app/views/bigmouth/articles/index.html.slim within layouts/application (24.0ms)
878
+ Completed 200 OK in 44ms (Views: 43.3ms | ActiveRecord: 0.1ms)
879
+  (0.1ms) rollback transaction
880
+  (0.1ms) begin transaction
881
+ ---------------------------------------------------------------------
882
+ Bigmouth::ArticlesControllerTest: test_should_get_new_when_logging_in
883
+ ---------------------------------------------------------------------
884
+ Bigmouth::Article Load (0.1ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
885
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
886
+ Processing by Bigmouth::ArticlesController#new as HTML
887
+ Rendered /Users/mubae/Desktop/bigmouth/app/views/bigmouth/articles/_form.html.slim (95.7ms)
888
+ Rendered /Users/mubae/Desktop/bigmouth/app/views/bigmouth/articles/new.html.slim within layouts/bigmouth/default (113.4ms)
889
+ Completed 500 Internal Server Error in 2070ms
890
+  (0.1ms) rollback transaction
891
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
892
+  (0.1ms) begin transaction
893
+ Fixture Delete (5.7ms) DELETE FROM "bigmouth_articles"
894
+ Fixture Insert (0.5ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 07:47:10', '2015-01-29 07:47:10', 980190962)
895
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 07:47:10', '2015-01-29 07:47:10', 298486374)
896
+ Fixture Delete (0.4ms) DELETE FROM "users"
897
+ Fixture Insert (0.1ms) INSERT INTO "users" ("email", "salt", "crypted_password", "created_at", "updated_at", "id") VALUES ('testuser@example.com', 'asdasdastr4325234324sdfds', '$2a$10$drbXkJ0yK.Xra.8o1SwoBOowlKkT4YvtQecrijGS6MSHPjhRyY8Vu', '2015-01-29 07:47:10', '2015-01-29 07:47:10', 980190962)
898
+  (1.1ms) commit transaction
899
+  (0.1ms) begin transaction
900
+ -------------------------------------------------------
901
+ Bigmouth::ArticlesControllerTest: test_should_get_index
902
+ -------------------------------------------------------
903
+ Bigmouth::Article Load (0.6ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
904
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
905
+ Processing by Bigmouth::ArticlesController#index as HTML
906
+ Bigmouth::Article Load (0.1ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles"
907
+ Rendered /Users/mubae/Desktop/bigmouth/app/views/bigmouth/articles/index.html.slim within layouts/bigmouth/default (36.4ms)
908
+ Completed 200 OK in 1509ms (Views: 1508.4ms | ActiveRecord: 0.1ms)
909
+  (0.1ms) rollback transaction
910
+  (0.1ms) begin transaction
911
+ ---------------------------------------------------------------------
912
+ Bigmouth::ArticlesControllerTest: test_should_get_new_when_logging_in
913
+ ---------------------------------------------------------------------
914
+ Bigmouth::Article Load (0.2ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
915
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
916
+ Processing by Bigmouth::ArticlesController#new as HTML
917
+ Rendered /Users/mubae/Desktop/bigmouth/app/views/bigmouth/articles/_form.html.slim (32.5ms)
918
+ Rendered /Users/mubae/Desktop/bigmouth/app/views/bigmouth/articles/new.html.slim within layouts/bigmouth/default (43.1ms)
919
+ Completed 200 OK in 50ms (Views: 49.6ms | ActiveRecord: 0.0ms)
920
+  (0.1ms) rollback transaction
921
+  (0.0ms) begin transaction
922
+ ------------------------
923
+ BigmouthTest: test_truth
924
+ ------------------------
925
+  (0.0ms) rollback transaction
926
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
927
+  (0.1ms) begin transaction
928
+ Fixture Delete (0.4ms) DELETE FROM "bigmouth_articles"
929
+ Fixture Insert (0.2ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 07:49:01', '2015-01-29 07:49:01', 980190962)
930
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 07:49:01', '2015-01-29 07:49:01', 298486374)
931
+ Fixture Delete (0.1ms) DELETE FROM "users"
932
+ Fixture Insert (0.1ms) INSERT INTO "users" ("email", "salt", "crypted_password", "created_at", "updated_at", "id") VALUES ('testuser@example.com', 'asdasdastr4325234324sdfds', '$2a$10$DHghPgOMxu2QW0b1X.Pf/ej/olcKPElC/afD2eqcugqFSf8g1b2fu', '2015-01-29 07:49:01', '2015-01-29 07:49:01', 980190962)
933
+  (0.8ms) commit transaction
934
+  (0.0ms) begin transaction
935
+ ----------------------------------------------------------------------------
936
+ Bigmouth::ArticlesControllerTest: test_should_not_get_new_without_logging_in
937
+ ----------------------------------------------------------------------------
938
+ Bigmouth::Article Load (0.2ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
939
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
940
+ Processing by Bigmouth::ArticlesController#new as HTML
941
+ Redirected to http://test.host/blog/
942
+ Filter chain halted as :action_requires_login rendered or redirected
943
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
944
+  (0.1ms) rollback transaction
945
+  (0.0ms) begin transaction
946
+ -------------------------------------------------------
947
+ Bigmouth::ArticlesControllerTest: test_should_get_index
948
+ -------------------------------------------------------
949
+ Bigmouth::Article Load (0.1ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
950
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
951
+ Processing by Bigmouth::ArticlesController#index as HTML
952
+ Bigmouth::Article Load (0.1ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles"
953
+ Rendered /Users/mubae/Desktop/bigmouth/app/views/bigmouth/articles/index.html.slim within layouts/bigmouth/default (31.0ms)
954
+ Completed 200 OK in 117ms (Views: 116.1ms | ActiveRecord: 0.1ms)
955
+  (0.1ms) rollback transaction
956
+  (0.1ms) begin transaction
957
+ ---------------------------------------------------------------------
958
+ Bigmouth::ArticlesControllerTest: test_should_get_new_when_logging_in
959
+ ---------------------------------------------------------------------
960
+ Bigmouth::Article Load (0.1ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
961
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
962
+ Processing by Bigmouth::ArticlesController#new as HTML
963
+ Rendered /Users/mubae/Desktop/bigmouth/app/views/bigmouth/articles/_form.html.slim (46.9ms)
964
+ Rendered /Users/mubae/Desktop/bigmouth/app/views/bigmouth/articles/new.html.slim within layouts/bigmouth/default (60.7ms)
965
+ Completed 200 OK in 65ms (Views: 64.4ms | ActiveRecord: 0.0ms)
966
+  (0.1ms) rollback transaction
967
+  (0.0ms) begin transaction
968
+ ------------------------
969
+ BigmouthTest: test_truth
970
+ ------------------------
971
+  (0.0ms) rollback transaction
972
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
973
+  (0.1ms) begin transaction
974
+ Fixture Delete (0.2ms) DELETE FROM "bigmouth_articles"
975
+ Fixture Insert (0.3ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 07:49:54', '2015-01-29 07:49:54', 980190962)
976
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 07:49:54', '2015-01-29 07:49:54', 298486374)
977
+ Fixture Delete (0.2ms) DELETE FROM "users"
978
+ Fixture Insert (0.2ms) INSERT INTO "users" ("email", "salt", "crypted_password", "created_at", "updated_at", "id") VALUES ('testuser@example.com', 'asdasdastr4325234324sdfds', '$2a$10$zMTucDSieCRbgfeHurOsW.0IjQtyEGjQlsxU7Fti9SdU1E1DzyMd6', '2015-01-29 07:49:54', '2015-01-29 07:49:54', 980190962)
979
+  (1.0ms) commit transaction
980
+  (0.1ms) begin transaction
981
+ -------------------------------------------------------
982
+ Bigmouth::ArticlesControllerTest: test_should_get_index
983
+ -------------------------------------------------------
984
+ Bigmouth::Article Load (0.2ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
985
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
986
+ Processing by Bigmouth::ArticlesController#index as HTML
987
+ Bigmouth::Article Load (0.1ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles"
988
+ Rendered /Users/mubae/Desktop/bigmouth/app/views/bigmouth/articles/index.html.slim within layouts/bigmouth/default (29.3ms)
989
+ Completed 200 OK in 91ms (Views: 90.1ms | ActiveRecord: 0.1ms)
990
+  (0.1ms) rollback transaction
991
+  (0.0ms) begin transaction
992
+ ---------------------------------------------------------------------
993
+ Bigmouth::ArticlesControllerTest: test_should_get_new_when_logging_in
994
+ ---------------------------------------------------------------------
995
+ Bigmouth::Article Load (0.1ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
996
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
997
+ Processing by Bigmouth::ArticlesController#new as HTML
998
+ Rendered /Users/mubae/Desktop/bigmouth/app/views/bigmouth/articles/_form.html.slim (37.4ms)
999
+ Rendered /Users/mubae/Desktop/bigmouth/app/views/bigmouth/articles/new.html.slim within layouts/bigmouth/default (50.9ms)
1000
+ Completed 200 OK in 55ms (Views: 55.0ms | ActiveRecord: 0.0ms)
1001
+  (0.1ms) rollback transaction
1002
+  (0.0ms) begin transaction
1003
+ ----------------------------------------------------------------------------
1004
+ Bigmouth::ArticlesControllerTest: test_should_not_get_new_without_logging_in
1005
+ ----------------------------------------------------------------------------
1006
+ Bigmouth::Article Load (0.1ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
1007
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
1008
+ Processing by Bigmouth::ArticlesController#new as HTML
1009
+ Redirected to http://test.host/blog/
1010
+ Filter chain halted as :action_requires_login rendered or redirected
1011
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1012
+  (0.1ms) rollback transaction
1013
+  (0.0ms) begin transaction
1014
+ ------------------------
1015
+ BigmouthTest: test_truth
1016
+ ------------------------
1017
+  (0.0ms) rollback transaction
1018
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1019
+  (0.1ms) begin transaction
1020
+ Fixture Delete (0.3ms) DELETE FROM "bigmouth_articles"
1021
+ Fixture Insert (0.2ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 07:50:21', '2015-01-29 07:50:21', 980190962)
1022
+ Fixture Insert (0.1ms) INSERT INTO "bigmouth_articles" ("title", "text", "created_at", "updated_at", "id") VALUES ('MyString', 'MyText', '2015-01-29 07:50:21', '2015-01-29 07:50:21', 298486374)
1023
+ Fixture Delete (0.2ms) DELETE FROM "users"
1024
+ Fixture Insert (0.1ms) INSERT INTO "users" ("email", "salt", "crypted_password", "created_at", "updated_at", "id") VALUES ('testuser@example.com', 'asdasdastr4325234324sdfds', '$2a$10$d7l/Oe3XWBsNUxq8eUxVAOtVSVWDjBimHYBdLchvdEiOvH9pbCDhu', '2015-01-29 07:50:21', '2015-01-29 07:50:21', 980190962)
1025
+  (5.7ms) commit transaction
1026
+  (0.1ms) begin transaction
1027
+ ------------------------
1028
+ BigmouthTest: test_truth
1029
+ ------------------------
1030
+  (0.1ms) rollback transaction
1031
+  (0.1ms) begin transaction
1032
+ ----------------------------------------------------------------------------
1033
+ Bigmouth::ArticlesControllerTest: test_should_not_get_new_without_logging_in
1034
+ ----------------------------------------------------------------------------
1035
+ Bigmouth::Article Load (0.2ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
1036
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
1037
+ Processing by Bigmouth::ArticlesController#new as HTML
1038
+ Redirected to http://test.host/blog/
1039
+ Filter chain halted as :action_requires_login rendered or redirected
1040
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
1041
+  (0.1ms) rollback transaction
1042
+  (0.0ms) begin transaction
1043
+ -------------------------------------------------------
1044
+ Bigmouth::ArticlesControllerTest: test_should_get_index
1045
+ -------------------------------------------------------
1046
+ Bigmouth::Article Load (0.1ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
1047
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
1048
+ Processing by Bigmouth::ArticlesController#index as HTML
1049
+ Bigmouth::Article Load (0.1ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles"
1050
+ Rendered /Users/mubae/Desktop/bigmouth/app/views/bigmouth/articles/index.html.slim within layouts/bigmouth/default (28.4ms)
1051
+ Completed 200 OK in 80ms (Views: 79.1ms | ActiveRecord: 0.1ms)
1052
+  (0.1ms) rollback transaction
1053
+  (0.1ms) begin transaction
1054
+ ---------------------------------------------------------------------
1055
+ Bigmouth::ArticlesControllerTest: test_should_get_new_when_logging_in
1056
+ ---------------------------------------------------------------------
1057
+ Bigmouth::Article Load (0.1ms) SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
1058
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
1059
+ Processing by Bigmouth::ArticlesController#new as HTML
1060
+ Rendered /Users/mubae/Desktop/bigmouth/app/views/bigmouth/articles/_form.html.slim (33.5ms)
1061
+ Rendered /Users/mubae/Desktop/bigmouth/app/views/bigmouth/articles/new.html.slim within layouts/bigmouth/default (54.5ms)
1062
+ Completed 200 OK in 59ms (Views: 58.5ms | ActiveRecord: 0.0ms)
1063
+  (0.1ms) rollback transaction