bigmouth 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/bigmouth/admin/dashboard.js +17 -0
- data/app/assets/javascripts/bigmouth/admin/data-confirm-modal.js +269 -0
- data/app/assets/javascripts/bigmouth/application.js +1 -0
- data/app/assets/stylesheets/bigmouth/admin/dashboard.css.scss +108 -0
- data/app/assets/stylesheets/bigmouth/custom.scss +32 -1
- data/app/controllers/bigmouth/admin/application_controller.rb +8 -0
- data/app/controllers/bigmouth/admin/articles_controller.rb +60 -0
- data/app/controllers/bigmouth/admin/images_controller.rb +60 -0
- data/app/controllers/bigmouth/articles_controller.rb +5 -53
- data/app/helpers/bigmouth/admin/application_helper.rb +35 -0
- data/app/helpers/bigmouth/application_helper.rb +24 -0
- data/app/models/bigmouth/article.rb +4 -1
- data/app/models/bigmouth/image.rb +9 -0
- data/app/views/bigmouth/{articles → admin/articles}/_form.html.slim +1 -1
- data/app/views/bigmouth/admin/articles/edit.html.slim +6 -0
- data/app/views/bigmouth/admin/articles/index.html.slim +29 -0
- data/app/views/bigmouth/admin/articles/new.html.slim +4 -0
- data/app/views/bigmouth/admin/articles/show.html.slim +17 -0
- data/app/views/bigmouth/admin/images/_form.html.slim +18 -0
- data/app/views/bigmouth/admin/images/edit.html.slim +6 -0
- data/app/views/bigmouth/admin/images/index.html.slim +28 -0
- data/app/views/bigmouth/admin/images/new.html.slim +4 -0
- data/app/views/bigmouth/admin/images/show.html.slim +17 -0
- data/app/views/bigmouth/articles/index.html.slim +17 -16
- data/app/views/bigmouth/articles/show.html.slim +10 -11
- data/app/views/layouts/bigmouth/admin/dashboard.html.slim +56 -0
- data/app/views/layouts/bigmouth/default.html.slim +8 -4
- data/config/routes.rb +7 -2
- data/db/migrate/20150126024751_add_user_id_to_bigmouth_articles.rb +5 -0
- data/db/migrate/20150201131400_create_bigmouth_images.rb +9 -0
- data/db/migrate/20150201134338_add_user_id_to_bigmouth_images.rb +5 -0
- data/db/migrate/20150204082807_add_image_file_to_images.rb +8 -0
- data/lib/bigmouth.rb +12 -14
- data/lib/bigmouth/config.rb +23 -0
- data/lib/bigmouth/version.rb +1 -1
- data/test/controllers/bigmouth/admin/articles_controller_test.rb +9 -0
- data/test/controllers/bigmouth/admin/files_controller_test.rb +9 -0
- data/test/controllers/bigmouth/articles_controller_test.rb +4 -42
- data/test/dummy/app/models/user.rb +2 -1
- data/test/dummy/app/views/layouts/application.html.erb +12 -11
- data/test/dummy/config/initializers/bigmouth.rb +16 -13
- data/test/dummy/db/schema.rb +13 -2
- data/test/features/bigmouth/admin/admin_area_test.rb +113 -0
- data/test/features/bigmouth/admin/admin_area_with_js_test.rb +60 -0
- data/test/features/bigmouth/admin/meat_is_murder.jpg +0 -0
- data/test/features/bigmouth/admin/strangeways_here_we_come.jpg +0 -0
- data/test/fixtures/bigmouth/articles.yml +26 -6
- data/test/fixtures/bigmouth/images.yml +10 -0
- data/test/fixtures/users.yml +4 -3
- data/test/helpers/bigmouth/application_helper_test.rb +54 -0
- data/test/helpers/bigmouth/articles_helper_test.rb +0 -0
- data/test/models/bigmouth/article_test.rb +14 -3
- data/test/models/bigmouth/file_test.rb +9 -0
- data/test/test_helper.rb +20 -0
- metadata +144 -708
- data/app/helpers/bigmouth/articles_helper.rb +0 -12
- data/app/views/bigmouth/articles/edit.html.slim +0 -6
- data/app/views/bigmouth/articles/new.html.slim +0 -4
- data/db/migrate/20150126024751_add_author_id_to_bigmouth_articles.rb +0 -5
- data/lib/#bigmouth.rb# +0 -31
- data/test/controllers/bigmouth/#articles_controller_test.rb# +0 -61
- data/test/dummy/app/views/layouts/#application.html.erb# +0 -22
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +0 -36941
- data/test/dummy/log/test.log +0 -1063
- data/test/dummy/tmp/cache/assets/development/sass/365dfe376d173aa71edc333cb62d683802ac4ebb/application.css.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/365dfe376d173aa71edc333cb62d683802ac4ebb/custom.css.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/365dfe376d173aa71edc333cb62d683802ac4ebb/custom.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_alerts.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_badges.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_breadcrumbs.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_button-groups.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_buttons.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_carousel.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_close.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_code.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_component-animations.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_dropdowns.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_forms.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_glyphicons.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_grid.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_input-groups.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_jumbotron.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_labels.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_list-group.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_media.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_mixins.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_modals.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_navbar.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_navs.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_normalize.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_pager.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_pagination.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_panels.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_popovers.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_print.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_progress-bars.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_responsive-embed.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_responsive-utilities.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_scaffolding.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_tables.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_thumbnails.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_tooltip.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_type.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_utilities.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_variables.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_wells.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_alerts.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_background-variant.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_border-radius.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_buttons.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_center-block.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_clearfix.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_forms.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_gradients.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_grid-framework.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_grid.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_hide-text.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_image.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_labels.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_list-group.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_nav-divider.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_nav-vertical-align.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_opacity.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_pagination.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_panels.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_progress-bar.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_reset-filter.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_resize.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_responsive-visibility.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_size.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_tab-focus.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_table-row.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_text-emphasis.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_text-overflow.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_vendor-prefixes.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/f4632670e0618904d6cdfaa05215347dcf2fcba2/_bootstrap-sprockets.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sass/f4632670e0618904d6cdfaa05215347dcf2fcba2/_bootstrap.scssc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0800f54ee19cf3cee10b956fa9786799 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0b3bc7828f4a9fe07afe8f989474a5ec +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0d950fff852c8cc3816ea54eeb5a1b2a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/0ec737c7804927b87a778f1b8fd956a4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13cd01d1efdd0e91fd52fafc1bf9565f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13d2a7feb53fc9b264c8f81d399ea58e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/146dac6de2f351f56eeb983e57282736 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/1bda73f85ee45cdc3618869a34b453c4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2006bd1910570bb544d0dc32d715b996 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/23cf365c3ba440f92a8f991efbcfa6a8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2580ae76161b34d0884be8806320ca61 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/26131461f8b9e7a897ba3f7269ddb6b4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2770d71695c9a6f0c2bc160ad37db730 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/29ca5e3268edb180578eaa08ddd9915c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2d665f9a2281c838d3d69f2b737902d3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/325360df43b85fca59b40b8762508af4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/32f6bca48ffb4460dfd8f12fc1ef85a1 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/383ef9be6bc79cc5951399b3c3b46535 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/388376eb1d0b8a9ed9e4318ac247d7d4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3b6ff5c4b970461fc3a4be5ac12d0b3d +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3b7a25bfd614ce14333ba7ed03937a55 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3bc494fe8e4dc2c2b9781f7a811ee00f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/3c72c3313cf35da0f213400d6fec1541 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4050a4e5062ab95c9f32e9b6940821ea +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/42fb7cef7cfa43cdd2b5b64b5c20b889 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/43e5750d09bdf0e36a57cbf32acb099e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/451a8fbb54a23dd3a5547a57f94df7e4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/46b842cdfa1e5070d20314cbb332d59c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4b7ddd43b4359749c832f5b4b1bc7cf8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4bb54293ea4b6f08466a2557de5a2a11 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4be5d609ea74e7b38e483d579dedd8d7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4e025241a8d1e12557a4e2b5d3063d7e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/4f41a3468d8fd87e462d54dfca140680 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/501519c399e259df3bc49ca644322893 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/508872d04f76d8be3efaf0f82d8fb0b7 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/50a7922f106c3194f16edef90cb660c9 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/510da110ae528e2d22533be39ff696c5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5379d1871319f899b50fdcbe28e5d018 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/53b12122a17e514d3adca5cdb3048285 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/54cdc3dee8cad9f90c8539aa32d1e4f2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/57551ea75456b809d737e62170040caf +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/59de21355aa0fd0d461308733da4cd3b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5c0bcb86ff5cdf72a4a29841434f88dc +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5dae5894de8c275b1254aaf067195921 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5dbfb71999c0a18ab8d2cc39b1f71284 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5f1a0d05e77ca8b9a1fc2a47e17a8174 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/707ab35c5250018368f3a9a4df4da449 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/73cfbca7c1b756843290765631f4a785 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/75cd2272140031326dca921e73a933f9 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/76163a3e3c27325fb0ff4ed780b94fe8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/79b7d24c49b1d2ea59077302f8b3a18b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7a59f22f8067363e3395bc15aac4dbed +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7ab1c3857e4e7ea9e7174d62ca10a6e1 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7cab2c7321621193037a91e348cf67e5 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7d5608952c1d5efe059cc860bce1cb35 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/7f9592572b36c306feb917ee3a49639b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/80b31d46ab66182422df94cd9712b458 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/85d1b2c4394d4404cc670da0e251388e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/867ee69677cde04a7642174f04a7e034 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/87b209c0c9da28094a8d5581a21262c6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/87d3d8a0e65a412e3adc455bc4bf0419 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/89b4e37ba66874fc6765f790cdc1aae3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8a389a2323475a7053fc419c4103814f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8b806a0ae20adb61aba4b0e7c24c86d1 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/8db1cfb543feba7dbf3b1ad076395681 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/981923089e4607a8bd7da1384b2712c3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9caabbfb306d294b869c0e5ef25ed6ad +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9d39f38ba45b0ec46cbbcf748d899172 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9ea84759be7ee597c81ea6b306983dd1 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/9ff88e23342f6d1e65e3617390550c98 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a17257ce0ba57baae100bbc3ceac5dfb +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a1dea2a2c7707388ed8ec70150c99735 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a6ca6a84d389f9b81abc9b055b5cab79 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/a79f32a7b19efba7b69efebbd1ac6425 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ab7a93c91e93451ef33741a925d02d08 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ac893c1e97c4fca776b0fa76929a71ae +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ace517e7e927c1ece160bd3024b1dc5c +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b3a5c599251f7cf1f3e73174b9646986 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b3e1ccf83e92a0235ec89cbc837925a6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b5f53e94b387e8f6c7cb791a9866d867 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b644258792ab07998445a3a13c5346b0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b710fe7f6a4f661200aa48112996586a +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b7ee934a0cfd8a77057075829e86b862 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/b9d280b317ea809834bd8cff91690afa +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/bc384ffca623dd84dcc27426de8f538e +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/bd25bf8269cb7fbc481ea93290e14619 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/bf4c6581e02e0626699a85cbf74479bd +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c164999110702fe49d2672bf6c3f48c0 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c27a3e2bd1de5e03ad3501c17fd7ecf1 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c2d8c0856a19fd683b5f4d7704382aa2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c31256c47d596d7ab5bec954b96e6e19 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c3a2774d3288ca20b74f9baf56656109 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c3ec335a67fd016e5f01916073c165b4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c57031591f8741c53c5c7431633997c4 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/c816c88aed3e2bbd9d5d2ff726b1c7c2 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cebc6db0bbb8120f430da3970b173d2f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d039180b508a0299d4ac3f7fbf9662cd +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d0771a5d56c6dd57590ad00cd2a287f1 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d15b1d9a1b02f711ec089d10fea24315 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d2038f3ae034aa5d2baa6f1b7359ee02 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d5862a08d88b337e70c13f403c3a0912 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d9328ea75ef727a9049f27c87ff53e67 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/dc04ff4958b01098f5923487afba1f60 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/de549dcf945ab5f71371242966074439 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/dfa904f001d086cda03ebfac7fde7550 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e08495f04cd097009667a60ec0bde5cb +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/e7d4caf1fd93f94e35c0d70b4a16b308 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ec44bf41dda440ffa0a442b36f3f682f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/ed95a40034d5142585894fe388b45552 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/edf7ee075b440ec3827ac0cdfde324b3 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/eee1420e123cd3e2ff3d3bd790d51cdf +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f0908aaef2c0165df00f19c66fa8ab50 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f4ea112f7250e02269448d556e4379d8 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f56253b5f374fff1a33fbbc9881c9124 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f87083f064a636b4fda659b15d9adede +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/fbfb440251f374b2d535d7aadda4019f +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/fcac08ebaff1499d385ec5712e1a218c +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/365dfe376d173aa71edc333cb62d683802ac4ebb/application.css.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/365dfe376d173aa71edc333cb62d683802ac4ebb/custom.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_alerts.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_badges.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_breadcrumbs.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_button-groups.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_buttons.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_carousel.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_close.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_code.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_component-animations.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_dropdowns.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_forms.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_glyphicons.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_grid.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_input-groups.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_jumbotron.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_labels.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_list-group.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_media.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_mixins.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_modals.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_navbar.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_navs.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_normalize.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_pager.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_pagination.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_panels.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_popovers.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_print.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_progress-bars.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_responsive-embed.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_responsive-utilities.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_scaffolding.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_tables.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_thumbnails.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_tooltip.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_type.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_utilities.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_variables.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/4163f32cc458b0d128f15c1584bef7a5c65343ed/_wells.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_alerts.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_background-variant.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_border-radius.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_buttons.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_center-block.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_clearfix.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_forms.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_gradients.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_grid-framework.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_grid.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_hide-text.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_image.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_labels.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_list-group.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_nav-divider.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_nav-vertical-align.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_opacity.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_pagination.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_panels.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_progress-bar.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_reset-filter.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_resize.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_responsive-visibility.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_size.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_tab-focus.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_table-row.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_text-emphasis.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_text-overflow.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/561bf4f81fa042d65c4c1b5ded662f7efde3cb49/_vendor-prefixes.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/f4632670e0618904d6cdfaa05215347dcf2fcba2/_bootstrap-sprockets.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sass/f4632670e0618904d6cdfaa05215347dcf2fcba2/_bootstrap.scssc +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/0b3bc7828f4a9fe07afe8f989474a5ec +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/0d950fff852c8cc3816ea54eeb5a1b2a +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/0ec737c7804927b87a778f1b8fd956a4 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/13d2a7feb53fc9b264c8f81d399ea58e +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/146dac6de2f351f56eeb983e57282736 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/1bda73f85ee45cdc3618869a34b453c4 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/23cf365c3ba440f92a8f991efbcfa6a8 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/2580ae76161b34d0884be8806320ca61 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/26131461f8b9e7a897ba3f7269ddb6b4 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/2770d71695c9a6f0c2bc160ad37db730 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/29ca5e3268edb180578eaa08ddd9915c +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/2d665f9a2281c838d3d69f2b737902d3 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/325360df43b85fca59b40b8762508af4 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/32f6bca48ffb4460dfd8f12fc1ef85a1 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/371bf96e99717688ed7313a0c53f4212 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/3b6ff5c4b970461fc3a4be5ac12d0b3d +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/3b7a25bfd614ce14333ba7ed03937a55 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/3bc494fe8e4dc2c2b9781f7a811ee00f +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/4050a4e5062ab95c9f32e9b6940821ea +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/42fb7cef7cfa43cdd2b5b64b5c20b889 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/451a8fbb54a23dd3a5547a57f94df7e4 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/46b842cdfa1e5070d20314cbb332d59c +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/4be5d609ea74e7b38e483d579dedd8d7 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/57551ea75456b809d737e62170040caf +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/5c0bcb86ff5cdf72a4a29841434f88dc +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/5dae5894de8c275b1254aaf067195921 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/5f1a0d05e77ca8b9a1fc2a47e17a8174 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/6fc757c2c8329244ca95d6909865bbc2 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/707ab35c5250018368f3a9a4df4da449 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/73cfbca7c1b756843290765631f4a785 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/76163a3e3c27325fb0ff4ed780b94fe8 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/867ee69677cde04a7642174f04a7e034 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/87b209c0c9da28094a8d5581a21262c6 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/87d3d8a0e65a412e3adc455bc4bf0419 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/89b4e37ba66874fc6765f790cdc1aae3 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/8a389a2323475a7053fc419c4103814f +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/8db1cfb543feba7dbf3b1ad076395681 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/9caabbfb306d294b869c0e5ef25ed6ad +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/9d39f38ba45b0ec46cbbcf748d899172 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/9ff88e23342f6d1e65e3617390550c98 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/a17257ce0ba57baae100bbc3ceac5dfb +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/a1dea2a2c7707388ed8ec70150c99735 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/a6ca6a84d389f9b81abc9b055b5cab79 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/ac893c1e97c4fca776b0fa76929a71ae +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/b3a5c599251f7cf1f3e73174b9646986 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/b3e1ccf83e92a0235ec89cbc837925a6 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/b5f53e94b387e8f6c7cb791a9866d867 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/b644258792ab07998445a3a13c5346b0 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/b7ee934a0cfd8a77057075829e86b862 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/b9d280b317ea809834bd8cff91690afa +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/bc384ffca623dd84dcc27426de8f538e +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/bd25bf8269cb7fbc481ea93290e14619 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/c164999110702fe49d2672bf6c3f48c0 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/c27a3e2bd1de5e03ad3501c17fd7ecf1 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/c2d8c0856a19fd683b5f4d7704382aa2 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/c3ec335a67fd016e5f01916073c165b4 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/c57031591f8741c53c5c7431633997c4 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d039180b508a0299d4ac3f7fbf9662cd +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d2038f3ae034aa5d2baa6f1b7359ee02 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d5862a08d88b337e70c13f403c3a0912 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/dfa904f001d086cda03ebfac7fde7550 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/e7d4caf1fd93f94e35c0d70b4a16b308 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/edf7ee075b440ec3827ac0cdfde324b3 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/eee1420e123cd3e2ff3d3bd790d51cdf +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f0908aaef2c0165df00f19c66fa8ab50 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f56253b5f374fff1a33fbbc9881c9124 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/fcac08ebaff1499d385ec5712e1a218c +0 -0
- data/test/dummy/tmp/pids/server.pid +0 -1
data/test/dummy/log/test.log
DELETED
@@ -1,1063 +0,0 @@
|
|
1
|
-
[1m[36m (1.3ms)[0m [1mCREATE TABLE "bigmouth_articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
2
|
-
[1m[35m (1.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
3
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
4
|
-
[1m[35m (1.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
5
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
6
|
-
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150125121829')
|
7
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
8
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
9
|
-
[1m[36m (1.2ms)[0m [1mCREATE 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) [0m
|
10
|
-
[1m[35m (1.4ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
11
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
12
|
-
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
13
|
-
[1m[36m (0.2ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
14
|
-
[1m[35m (1.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150126024751')
|
15
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
16
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
17
|
-
Migrating to CreateBigmouthArticles (20150125121829)
|
18
|
-
[1m[35m (0.1ms)[0m begin transaction
|
19
|
-
[1m[36m (0.2ms)[0m [1mCREATE TABLE "bigmouth_articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
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
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
22
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
23
|
-
[1m[36m (1.2ms)[0m [1mCREATE 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) [0m
|
24
|
-
[1m[35m (0.8ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
25
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
26
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
27
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
28
|
-
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150126024751')
|
29
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
30
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
31
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
32
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
33
|
-
Migrating to AddAuthorIdToBigmouthArticles (20150126024751)
|
34
|
-
[1m[35m (0.1ms)[0m begin transaction
|
35
|
-
[1m[36m (1.5ms)[0m [1mCREATE 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) [0m
|
36
|
-
[1m[35m (0.1ms)[0m SELECT * FROM "bigmouth_articles"
|
37
|
-
[1m[36m (0.7ms)[0m [1mDROP TABLE "bigmouth_articles"[0m
|
38
|
-
[1m[35m (0.1ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mSELECT * FROM "abigmouth_articles"[0m
|
40
|
-
[1m[35m (0.3ms)[0m DROP TABLE "abigmouth_articles"
|
41
|
-
[1m[36mSQL (0.2ms)[0m [1mDELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = ?[0m [["version", "20150126024751"]]
|
42
|
-
[1m[35m (1.1ms)[0m commit transaction
|
43
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
44
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
45
|
-
Migrating to CreateBigmouthArticles (20150125121829)
|
46
|
-
[1m[35m (0.1ms)[0m begin transaction
|
47
|
-
[1m[36m (0.1ms)[0m [1mCREATE TABLE "bigmouth_articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
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
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
50
|
-
[1m[36m (1.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
51
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
52
|
-
[1m[36m (0.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
53
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
54
|
-
Migrating to CreateBigmouthArticles (20150125121829)
|
55
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
56
|
-
[1m[35m (0.5ms)[0m 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
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150125121829"]]
|
58
|
-
[1m[35m (0.8ms)[0m commit transaction
|
59
|
-
Migrating to AddAuthorIdToBigmouthArticles (20150126024751)
|
60
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
61
|
-
[1m[35m (0.4ms)[0m ALTER TABLE "bigmouth_articles" ADD "author_id" integer
|
62
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150126024751"]]
|
63
|
-
[1m[35m (0.6ms)[0m commit transaction
|
64
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
65
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
66
|
-
[1m[35m (0.1ms)[0m begin transaction
|
67
|
-
------------------------
|
68
|
-
BigmouthTest: test_truth
|
69
|
-
------------------------
|
70
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
71
|
-
[1m[35m (0.0ms)[0m begin transaction
|
72
|
-
----------------------------------------------------------
|
73
|
-
Bigmouth::ArticlesControllerTest: test_should_show_article
|
74
|
-
----------------------------------------------------------
|
75
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
76
|
-
[1m[35m (0.1ms)[0m begin transaction
|
77
|
-
-------------------------------------------------------------
|
78
|
-
Bigmouth::ArticlesControllerTest: test_should_destroy_article
|
79
|
-
-------------------------------------------------------------
|
80
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
81
|
-
[1m[35m (0.0ms)[0m begin transaction
|
82
|
-
-------------------------------------------------------
|
83
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
84
|
-
-------------------------------------------------------
|
85
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
86
|
-
[1m[35m (0.0ms)[0m begin transaction
|
87
|
-
------------------------------------------------------
|
88
|
-
Bigmouth::ArticlesControllerTest: test_should_get_edit
|
89
|
-
------------------------------------------------------
|
90
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
91
|
-
[1m[35m (0.0ms)[0m begin transaction
|
92
|
-
------------------------------------------------------------
|
93
|
-
Bigmouth::ArticlesControllerTest: test_should_update_article
|
94
|
-
------------------------------------------------------------
|
95
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
96
|
-
[1m[35m (0.1ms)[0m begin transaction
|
97
|
-
-----------------------------------------------------
|
98
|
-
Bigmouth::ArticlesControllerTest: test_should_get_new
|
99
|
-
-----------------------------------------------------
|
100
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
101
|
-
[1m[35m (0.0ms)[0m begin transaction
|
102
|
-
------------------------------------------------------------
|
103
|
-
Bigmouth::ArticlesControllerTest: test_should_create_article
|
104
|
-
------------------------------------------------------------
|
105
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
106
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
107
|
-
[1m[35m (0.1ms)[0m begin transaction
|
108
|
-
-------------------------------------------------------
|
109
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
110
|
-
-------------------------------------------------------
|
111
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
112
|
-
[1m[35m (0.0ms)[0m begin transaction
|
113
|
-
------------------------
|
114
|
-
BigmouthTest: test_truth
|
115
|
-
------------------------
|
116
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
117
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
118
|
-
[1m[35m (0.1ms)[0m begin transaction
|
119
|
-
-------------------------------------------------------
|
120
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
121
|
-
-------------------------------------------------------
|
122
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
123
|
-
[1m[35m (0.0ms)[0m begin transaction
|
124
|
-
------------------------
|
125
|
-
BigmouthTest: test_truth
|
126
|
-
------------------------
|
127
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
128
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
129
|
-
[1m[35m (0.1ms)[0m begin transaction
|
130
|
-
-------------------------------------------------------
|
131
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
132
|
-
-------------------------------------------------------
|
133
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
134
|
-
[1m[35m (0.1ms)[0m begin transaction
|
135
|
-
------------------------
|
136
|
-
BigmouthTest: test_truth
|
137
|
-
------------------------
|
138
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
139
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
140
|
-
[1m[35m (0.1ms)[0m begin transaction
|
141
|
-
-------------------------------------------------------
|
142
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
143
|
-
-------------------------------------------------------
|
144
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
145
|
-
[1m[35m (0.0ms)[0m begin transaction
|
146
|
-
------------------------
|
147
|
-
BigmouthTest: test_truth
|
148
|
-
------------------------
|
149
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
150
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
151
|
-
[1m[35m (0.1ms)[0m begin transaction
|
152
|
-
------------------------
|
153
|
-
BigmouthTest: test_truth
|
154
|
-
------------------------
|
155
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
156
|
-
[1m[35m (0.0ms)[0m begin transaction
|
157
|
-
-------------------------------------------------------
|
158
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
159
|
-
-------------------------------------------------------
|
160
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
161
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
162
|
-
[1m[35m (0.1ms)[0m begin transaction
|
163
|
-
------------------------
|
164
|
-
BigmouthTest: test_truth
|
165
|
-
------------------------
|
166
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
167
|
-
[1m[35m (0.1ms)[0m begin transaction
|
168
|
-
-------------------------------------------------------
|
169
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
170
|
-
-------------------------------------------------------
|
171
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
172
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
173
|
-
[1m[35m (0.1ms)[0m begin transaction
|
174
|
-
------------------------
|
175
|
-
BigmouthTest: test_truth
|
176
|
-
------------------------
|
177
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
178
|
-
[1m[35m (0.1ms)[0m begin transaction
|
179
|
-
-------------------------------------------------------
|
180
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
181
|
-
-------------------------------------------------------
|
182
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
183
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
184
|
-
[1m[35m (0.1ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
191
|
-
[1m[35m (0.0ms)[0m begin transaction
|
192
|
-
------------------------
|
193
|
-
BigmouthTest: test_truth
|
194
|
-
------------------------
|
195
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
196
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
197
|
-
[1m[35m (0.2ms)[0m begin transaction
|
198
|
-
-------------------------------------------------------
|
199
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
200
|
-
-------------------------------------------------------
|
201
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
202
|
-
[1m[35m (0.0ms)[0m begin transaction
|
203
|
-
------------------------
|
204
|
-
BigmouthTest: test_truth
|
205
|
-
------------------------
|
206
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
207
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
208
|
-
[1m[35m (0.1ms)[0m begin transaction
|
209
|
-
------------------------
|
210
|
-
BigmouthTest: test_truth
|
211
|
-
------------------------
|
212
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
213
|
-
[1m[35m (0.0ms)[0m begin transaction
|
214
|
-
-------------------------------------------------------
|
215
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
216
|
-
-------------------------------------------------------
|
217
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
218
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
219
|
-
[1m[35m (0.1ms)[0m begin transaction
|
220
|
-
------------------------
|
221
|
-
BigmouthTest: test_truth
|
222
|
-
------------------------
|
223
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
224
|
-
[1m[35m (0.0ms)[0m begin transaction
|
225
|
-
-------------------------------------------------------
|
226
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
227
|
-
-------------------------------------------------------
|
228
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
229
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
230
|
-
[1m[35m (0.1ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
237
|
-
[1m[35m (0.1ms)[0m begin transaction
|
238
|
-
------------------------
|
239
|
-
BigmouthTest: test_truth
|
240
|
-
------------------------
|
241
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
242
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
243
|
-
[1m[35m (0.1ms)[0m begin transaction
|
244
|
-
------------------------
|
245
|
-
BigmouthTest: test_truth
|
246
|
-
------------------------
|
247
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
248
|
-
[1m[35m (0.0ms)[0m begin transaction
|
249
|
-
-------------------------------------------------------
|
250
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
251
|
-
-------------------------------------------------------
|
252
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
253
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
254
|
-
[1m[35m (0.2ms)[0m begin transaction
|
255
|
-
------------------------
|
256
|
-
BigmouthTest: test_truth
|
257
|
-
------------------------
|
258
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
259
|
-
[1m[35m (0.1ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
266
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
267
|
-
[1m[35m (0.2ms)[0m begin transaction
|
268
|
-
-------------------------------------------------------
|
269
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
270
|
-
-------------------------------------------------------
|
271
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
272
|
-
[1m[35m (0.0ms)[0m begin transaction
|
273
|
-
------------------------
|
274
|
-
BigmouthTest: test_truth
|
275
|
-
------------------------
|
276
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
277
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
278
|
-
[1m[35m (0.1ms)[0m begin transaction
|
279
|
-
-------------------------------------------------------
|
280
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
281
|
-
-------------------------------------------------------
|
282
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
283
|
-
[1m[35m (0.0ms)[0m begin transaction
|
284
|
-
------------------------
|
285
|
-
BigmouthTest: test_truth
|
286
|
-
------------------------
|
287
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
288
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
289
|
-
[1m[35m (0.1ms)[0m begin transaction
|
290
|
-
-------------------------------------------------------
|
291
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
292
|
-
-------------------------------------------------------
|
293
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
294
|
-
[1m[35m (0.0ms)[0m begin transaction
|
295
|
-
------------------------
|
296
|
-
BigmouthTest: test_truth
|
297
|
-
------------------------
|
298
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
299
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
300
|
-
[1m[35m (0.1ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
307
|
-
[1m[35m (0.1ms)[0m begin transaction
|
308
|
-
------------------------
|
309
|
-
BigmouthTest: test_truth
|
310
|
-
------------------------
|
311
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
312
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
313
|
-
[1m[35m (0.1ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
320
|
-
[1m[35m (0.0ms)[0m begin transaction
|
321
|
-
------------------------
|
322
|
-
BigmouthTest: test_truth
|
323
|
-
------------------------
|
324
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
325
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
326
|
-
[1m[35m (0.1ms)[0m begin transaction
|
327
|
-
------------------------
|
328
|
-
BigmouthTest: test_truth
|
329
|
-
------------------------
|
330
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
331
|
-
[1m[35m (0.1ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
338
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
339
|
-
[1m[35m (0.1ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
346
|
-
[1m[35m (0.0ms)[0m begin transaction
|
347
|
-
------------------------
|
348
|
-
BigmouthTest: test_truth
|
349
|
-
------------------------
|
350
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
351
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
352
|
-
[1m[35m (0.1ms)[0m begin transaction
|
353
|
-
------------------------
|
354
|
-
BigmouthTest: test_truth
|
355
|
-
------------------------
|
356
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
357
|
-
[1m[35m (0.1ms)[0m begin transaction
|
358
|
-
-------------------------------------------------------
|
359
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
360
|
-
-------------------------------------------------------
|
361
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
362
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
363
|
-
[1m[35m (0.1ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
370
|
-
[1m[35m (0.1ms)[0m begin transaction
|
371
|
-
------------------------
|
372
|
-
BigmouthTest: test_truth
|
373
|
-
------------------------
|
374
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
375
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
376
|
-
[1m[35m (0.2ms)[0m begin transaction
|
377
|
-
------------------------
|
378
|
-
BigmouthTest: test_truth
|
379
|
-
------------------------
|
380
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
381
|
-
[1m[35m (0.1ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
388
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
389
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
390
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
391
|
-
[1m[35m (0.2ms)[0m begin transaction
|
392
|
-
[1m[36mFixture Delete (0.9ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
393
|
-
[1m[35mFixture Insert (4.4ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
395
|
-
[1m[35m (0.7ms)[0m commit transaction
|
396
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
397
|
-
------------------------
|
398
|
-
BigmouthTest: test_truth
|
399
|
-
------------------------
|
400
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
401
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
402
|
-
[1m[35m (0.1ms)[0m begin transaction
|
403
|
-
[1m[36mFixture Delete (0.6ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
404
|
-
[1m[35mFixture Insert (0.3ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
406
|
-
[1m[35m (0.6ms)[0m commit transaction
|
407
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
408
|
-
------------------------
|
409
|
-
BigmouthTest: test_truth
|
410
|
-
------------------------
|
411
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
412
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
413
|
-
[1m[35m (0.1ms)[0m begin transaction
|
414
|
-
[1m[36mFixture Delete (0.7ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
415
|
-
[1m[35mFixture Insert (0.3ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
417
|
-
[1m[35m (2.2ms)[0m commit transaction
|
418
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
419
|
-
-------------------------------------------------------
|
420
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
421
|
-
-------------------------------------------------------
|
422
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
423
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
424
|
-
[1m[35m (0.1ms)[0m begin transaction
|
425
|
-
------------------------
|
426
|
-
BigmouthTest: test_truth
|
427
|
-
------------------------
|
428
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
429
|
-
[1m[35m (0.0ms)[0m begin transaction
|
430
|
-
-------------------------------------------------------
|
431
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
432
|
-
-------------------------------------------------------
|
433
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
434
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
435
|
-
[1m[35m (0.2ms)[0m begin transaction
|
436
|
-
------------------------
|
437
|
-
BigmouthTest: test_truth
|
438
|
-
------------------------
|
439
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
440
|
-
[1m[35m (0.1ms)[0m begin transaction
|
441
|
-
-------------------------------------------------------
|
442
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
443
|
-
-------------------------------------------------------
|
444
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
445
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
446
|
-
[1m[35m (0.1ms)[0m begin transaction
|
447
|
-
[1m[36mFixture Delete (0.8ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
448
|
-
[1m[35mFixture Insert (0.5ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
450
|
-
[1m[35m (0.9ms)[0m commit transaction
|
451
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
452
|
-
-------------------------------------------------------
|
453
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
454
|
-
-------------------------------------------------------
|
455
|
-
[1m[35mBigmouth::Article Load (0.3ms)[0m SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
|
456
|
-
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
457
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
458
|
-
[1m[35m (0.1ms)[0m begin transaction
|
459
|
-
------------------------
|
460
|
-
BigmouthTest: test_truth
|
461
|
-
------------------------
|
462
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
463
|
-
[1m[35m (0.0ms)[0m begin transaction
|
464
|
-
-------------------------------------------------------
|
465
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
466
|
-
-------------------------------------------------------
|
467
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
468
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
469
|
-
[1m[35m (0.1ms)[0m begin transaction
|
470
|
-
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
471
|
-
[1m[35mFixture Insert (0.1ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
473
|
-
[1m[35m (4.7ms)[0m commit transaction
|
474
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
475
|
-
------------------------
|
476
|
-
BigmouthTest: test_truth
|
477
|
-
------------------------
|
478
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
479
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
480
|
-
[1m[36m (1.3ms)[0m [1mCREATE 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) [0m
|
481
|
-
[1m[35m (0.9ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
483
|
-
[1m[35m (5.1ms)[0m CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
|
484
|
-
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
485
|
-
[1m[35m (0.8ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
486
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
487
|
-
[1m[35m (0.6ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150129053810')
|
488
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
489
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
490
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
491
|
-
[1m[36m (0.3ms)[0m [1m 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
|
-
[0m
|
499
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
500
|
-
[1m[36m (5.2ms)[0m [1mCREATE 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) [0m
|
501
|
-
[1m[35m (0.8ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
503
|
-
[1m[35m (0.9ms)[0m CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
|
504
|
-
[1m[36m (0.8ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
505
|
-
[1m[35m (0.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
506
|
-
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
507
|
-
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20150129053810')
|
508
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
509
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
510
|
-
Migrating to CreateBigmouthArticles (20150125121829)
|
511
|
-
[1m[35m (0.1ms)[0m begin transaction
|
512
|
-
[1m[36m (0.1ms)[0m [1mCREATE TABLE "bigmouth_articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "text" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
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
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
515
|
-
[1m[36m (5.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m
|
516
|
-
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
517
|
-
[1m[36m (0.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
518
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
519
|
-
Migrating to CreateBigmouthArticles (20150125121829)
|
520
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
521
|
-
[1m[35m (0.7ms)[0m 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
|
-
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150125121829"]]
|
523
|
-
[1m[35m (4.9ms)[0m commit transaction
|
524
|
-
Migrating to AddAuthorIdToBigmouthArticles (20150126024751)
|
525
|
-
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
526
|
-
[1m[35m (0.7ms)[0m ALTER TABLE "bigmouth_articles" ADD "author_id" integer
|
527
|
-
[1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20150126024751"]]
|
528
|
-
[1m[35m (0.7ms)[0m commit transaction
|
529
|
-
Migrating to SorceryCore (20150129053810)
|
530
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
531
|
-
[1m[35m (0.4ms)[0m 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
|
-
[1m[36m (0.6ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m
|
533
|
-
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150129053810"]]
|
534
|
-
[1m[36m (0.8ms)[0m [1mcommit transaction[0m
|
535
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.6ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
536
|
-
[1m[36m (0.2ms)[0m [1m 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
|
-
[0m
|
544
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
545
|
-
[1m[35m (0.1ms)[0m begin transaction
|
546
|
-
[1m[36mFixture Delete (0.7ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
547
|
-
[1m[35mFixture Insert (0.1ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
549
|
-
[1m[35m (0.8ms)[0m commit transaction
|
550
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
551
|
-
----------------------------------------
|
552
|
-
UsersControllerTest: test_should_get_new
|
553
|
-
----------------------------------------
|
554
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
555
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
556
|
-
--------------------------------------------
|
557
|
-
UsersControllerTest: test_should_update_user
|
558
|
-
--------------------------------------------
|
559
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
560
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
561
|
-
------------------------------------------
|
562
|
-
UsersControllerTest: test_should_get_index
|
563
|
-
------------------------------------------
|
564
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
565
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
566
|
-
-----------------------------------------
|
567
|
-
UsersControllerTest: test_should_get_edit
|
568
|
-
-----------------------------------------
|
569
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
570
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
571
|
-
--------------------------------------------
|
572
|
-
UsersControllerTest: test_should_create_user
|
573
|
-
--------------------------------------------
|
574
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
575
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
576
|
-
---------------------------------------------
|
577
|
-
UsersControllerTest: test_should_destroy_user
|
578
|
-
---------------------------------------------
|
579
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
580
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
581
|
-
------------------------------------------
|
582
|
-
UsersControllerTest: test_should_show_user
|
583
|
-
------------------------------------------
|
584
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
585
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
594
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
603
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
612
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
613
|
-
------------------------
|
614
|
-
BigmouthTest: test_truth
|
615
|
-
------------------------
|
616
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
617
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
618
|
-
-------------------------------------------------------
|
619
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
620
|
-
-------------------------------------------------------
|
621
|
-
[1m[35mBigmouth::Article Load (0.3ms)[0m SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
|
622
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
623
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
624
|
-
[1m[35m (0.1ms)[0m begin transaction
|
625
|
-
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
626
|
-
[1m[35mFixture Insert (0.1ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
628
|
-
[1m[35m (5.0ms)[0m commit transaction
|
629
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
630
|
-
------------------------
|
631
|
-
BigmouthTest: test_truth
|
632
|
-
------------------------
|
633
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
634
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
635
|
-
-------------------------------------------------------
|
636
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
637
|
-
-------------------------------------------------------
|
638
|
-
[1m[35mBigmouth::Article Load (0.2ms)[0m SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
|
639
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
640
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
641
|
-
[1m[35m (0.1ms)[0m begin transaction
|
642
|
-
[1m[36mFixture Delete (0.6ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
643
|
-
[1m[35mFixture Insert (0.4ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
645
|
-
[1m[35m (0.6ms)[0m commit transaction
|
646
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
647
|
-
-------------------------------------------------------
|
648
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
649
|
-
-------------------------------------------------------
|
650
|
-
[1m[35mBigmouth::Article Load (0.2ms)[0m SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
|
651
|
-
Processing by Bigmouth::ArticlesController#index as HTML
|
652
|
-
[1m[36mBigmouth::Article Load (0.1ms)[0m [1mSELECT "bigmouth_articles".* FROM "bigmouth_articles"[0m
|
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
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
656
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
657
|
-
------------------------
|
658
|
-
BigmouthTest: test_truth
|
659
|
-
------------------------
|
660
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
661
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
662
|
-
[1m[35m (0.1ms)[0m begin transaction
|
663
|
-
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
664
|
-
[1m[35mFixture Insert (0.3ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
666
|
-
[1m[35m (1.3ms)[0m commit transaction
|
667
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
668
|
-
------------------------
|
669
|
-
BigmouthTest: test_truth
|
670
|
-
------------------------
|
671
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
672
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
673
|
-
-------------------------------------------------------
|
674
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
675
|
-
-------------------------------------------------------
|
676
|
-
[1m[35mBigmouth::Article Load (0.2ms)[0m SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
|
677
|
-
Processing by Bigmouth::ArticlesController#index as HTML
|
678
|
-
[1m[36mBigmouth::Article Load (0.2ms)[0m [1mSELECT "bigmouth_articles".* FROM "bigmouth_articles"[0m
|
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
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
682
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
683
|
-
-----------------------------------------------------
|
684
|
-
Bigmouth::ArticlesControllerTest: test_should_get_new
|
685
|
-
-----------------------------------------------------
|
686
|
-
[1m[35mBigmouth::Article Load (0.1ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
692
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
693
|
-
[1m[35m (0.1ms)[0m begin transaction
|
694
|
-
[1m[36mFixture Delete (5.1ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
695
|
-
[1m[35mFixture Insert (0.6ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
697
|
-
[1m[35mFixture Delete (0.2ms)[0m DELETE FROM "bigmouth_users"
|
698
|
-
SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
|
699
|
-
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
700
|
-
[1m[35m (0.1ms)[0m begin transaction
|
701
|
-
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
702
|
-
[1m[35mFixture Insert (0.1ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
704
|
-
[1m[35mFixture Delete (0.2ms)[0m DELETE FROM "bigmouth_users"
|
705
|
-
SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
|
706
|
-
[1m[36m (4.8ms)[0m [1mrollback transaction[0m
|
707
|
-
[1m[35m (0.1ms)[0m begin transaction
|
708
|
-
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
709
|
-
[1m[35mFixture Insert (0.1ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
711
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "bigmouth_users"
|
712
|
-
SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
|
713
|
-
[1m[36m (4.6ms)[0m [1mrollback transaction[0m
|
714
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
715
|
-
[1m[35m (0.1ms)[0m begin transaction
|
716
|
-
[1m[36mFixture Delete (5.2ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
717
|
-
[1m[35mFixture Insert (0.5ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
719
|
-
[1m[35mFixture Delete (0.2ms)[0m DELETE FROM "bigmouth_users"
|
720
|
-
SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
|
721
|
-
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
722
|
-
[1m[35m (0.1ms)[0m begin transaction
|
723
|
-
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
724
|
-
[1m[35mFixture Insert (0.1ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
726
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "bigmouth_users"
|
727
|
-
SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
|
728
|
-
[1m[36m (4.3ms)[0m [1mrollback transaction[0m
|
729
|
-
[1m[35m (0.1ms)[0m begin transaction
|
730
|
-
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
731
|
-
[1m[35mFixture Insert (0.1ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
733
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "bigmouth_users"
|
734
|
-
SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
|
735
|
-
[1m[36m (4.5ms)[0m [1mrollback transaction[0m
|
736
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
737
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
738
|
-
[1m[36m (0.2ms)[0m [1m 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
|
-
[0m
|
746
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
747
|
-
[1m[35m (0.1ms)[0m begin transaction
|
748
|
-
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
749
|
-
[1m[35mFixture Insert (0.1ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
751
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "bigmouth_users"
|
752
|
-
SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
|
753
|
-
[1m[36m (4.6ms)[0m [1mrollback transaction[0m
|
754
|
-
[1m[35m (0.1ms)[0m begin transaction
|
755
|
-
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
756
|
-
[1m[35mFixture Insert (0.1ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
758
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "bigmouth_users"
|
759
|
-
SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
|
760
|
-
[1m[36m (4.5ms)[0m [1mrollback transaction[0m
|
761
|
-
[1m[35m (0.1ms)[0m begin transaction
|
762
|
-
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
763
|
-
[1m[35mFixture Insert (0.1ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
765
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "bigmouth_users"
|
766
|
-
SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
|
767
|
-
[1m[36m (4.7ms)[0m [1mrollback transaction[0m
|
768
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
769
|
-
[1m[35m (0.1ms)[0m begin transaction
|
770
|
-
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
771
|
-
[1m[35mFixture Insert (0.7ms)[0m 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
|
-
[1m[36mFixture Insert (0.3ms)[0m [1mINSERT 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)[0m
|
773
|
-
[1m[35mFixture Delete (0.3ms)[0m DELETE FROM "bigmouth_users"
|
774
|
-
SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
|
775
|
-
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
776
|
-
[1m[35m (0.1ms)[0m begin transaction
|
777
|
-
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
778
|
-
[1m[35mFixture Insert (0.1ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
780
|
-
[1m[35mFixture Delete (0.3ms)[0m DELETE FROM "bigmouth_users"
|
781
|
-
SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
|
782
|
-
[1m[36m (2.0ms)[0m [1mrollback transaction[0m
|
783
|
-
[1m[35m (0.1ms)[0m begin transaction
|
784
|
-
[1m[36mFixture Delete (0.4ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
785
|
-
[1m[35mFixture Insert (0.2ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
787
|
-
[1m[35mFixture Delete (0.2ms)[0m DELETE FROM "bigmouth_users"
|
788
|
-
SQLite3::SQLException: no such table: bigmouth_users: DELETE FROM "bigmouth_users"
|
789
|
-
[1m[36m (4.5ms)[0m [1mrollback transaction[0m
|
790
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
791
|
-
[1m[35mActiveRecord::SchemaMigration Load (0.2ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
792
|
-
[1m[36m (0.2ms)[0m [1m 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
|
-
[0m
|
800
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
801
|
-
[1m[35m (0.1ms)[0m begin transaction
|
802
|
-
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
803
|
-
[1m[35mFixture Insert (0.7ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
805
|
-
[1m[35mFixture Delete (0.5ms)[0m DELETE FROM "users"
|
806
|
-
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT 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)[0m
|
807
|
-
[1m[35m (3.5ms)[0m commit transaction
|
808
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
809
|
-
------------------------
|
810
|
-
BigmouthTest: test_truth
|
811
|
-
------------------------
|
812
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
813
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
814
|
-
-------------------------------------------------------
|
815
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
816
|
-
-------------------------------------------------------
|
817
|
-
[1m[35mBigmouth::Article Load (0.2ms)[0m SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
|
818
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
819
|
-
[1m[35m (0.0ms)[0m begin transaction
|
820
|
-
---------------------------------------------------------------------
|
821
|
-
Bigmouth::ArticlesControllerTest: test_should_get_new_when_logging_in
|
822
|
-
---------------------------------------------------------------------
|
823
|
-
[1m[36mBigmouth::Article Load (0.1ms)[0m [1mSELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
824
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
825
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
826
|
-
[1m[35m (0.1ms)[0m begin transaction
|
827
|
-
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
828
|
-
[1m[35mFixture Insert (0.3ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
830
|
-
[1m[35mFixture Delete (0.2ms)[0m DELETE FROM "users"
|
831
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
832
|
-
[1m[35m (5.2ms)[0m commit transaction
|
833
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
834
|
-
------------------------
|
835
|
-
BigmouthTest: test_truth
|
836
|
-
------------------------
|
837
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
838
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
839
|
-
-------------------------------------------------------
|
840
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
841
|
-
-------------------------------------------------------
|
842
|
-
[1m[35mBigmouth::Article Load (0.2ms)[0m SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
|
843
|
-
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
844
|
-
Processing by Bigmouth::ArticlesController#index as HTML
|
845
|
-
[1m[35mBigmouth::Article Load (0.1ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
849
|
-
[1m[35m (0.1ms)[0m begin transaction
|
850
|
-
---------------------------------------------------------------------
|
851
|
-
Bigmouth::ArticlesControllerTest: test_should_get_new_when_logging_in
|
852
|
-
---------------------------------------------------------------------
|
853
|
-
[1m[36mBigmouth::Article Load (0.1ms)[0m [1mSELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
854
|
-
[1m[35mUser Load (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 980190962]]
|
855
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
856
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
857
|
-
[1m[35m (0.1ms)[0m begin transaction
|
858
|
-
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
859
|
-
[1m[35mFixture Insert (0.1ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
861
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "users"
|
862
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
863
|
-
[1m[35m (5.3ms)[0m commit transaction
|
864
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
865
|
-
------------------------
|
866
|
-
BigmouthTest: test_truth
|
867
|
-
------------------------
|
868
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
869
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
870
|
-
-------------------------------------------------------
|
871
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
872
|
-
-------------------------------------------------------
|
873
|
-
[1m[35mBigmouth::Article Load (0.2ms)[0m SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
|
874
|
-
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
875
|
-
Processing by Bigmouth::ArticlesController#index as HTML
|
876
|
-
[1m[35mBigmouth::Article Load (0.1ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
880
|
-
[1m[35m (0.1ms)[0m begin transaction
|
881
|
-
---------------------------------------------------------------------
|
882
|
-
Bigmouth::ArticlesControllerTest: test_should_get_new_when_logging_in
|
883
|
-
---------------------------------------------------------------------
|
884
|
-
[1m[36mBigmouth::Article Load (0.1ms)[0m [1mSELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
885
|
-
[1m[35mUser Load (0.0ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
891
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
892
|
-
[1m[35m (0.1ms)[0m begin transaction
|
893
|
-
[1m[36mFixture Delete (5.7ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
894
|
-
[1m[35mFixture Insert (0.5ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
896
|
-
[1m[35mFixture Delete (0.4ms)[0m DELETE FROM "users"
|
897
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
898
|
-
[1m[35m (1.1ms)[0m commit transaction
|
899
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
900
|
-
-------------------------------------------------------
|
901
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
902
|
-
-------------------------------------------------------
|
903
|
-
[1m[35mBigmouth::Article Load (0.6ms)[0m SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
|
904
|
-
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
905
|
-
Processing by Bigmouth::ArticlesController#index as HTML
|
906
|
-
[1m[35mBigmouth::Article Load (0.1ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
910
|
-
[1m[35m (0.1ms)[0m begin transaction
|
911
|
-
---------------------------------------------------------------------
|
912
|
-
Bigmouth::ArticlesControllerTest: test_should_get_new_when_logging_in
|
913
|
-
---------------------------------------------------------------------
|
914
|
-
[1m[36mBigmouth::Article Load (0.2ms)[0m [1mSELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
915
|
-
[1m[35mUser Load (0.1ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
921
|
-
[1m[35m (0.0ms)[0m begin transaction
|
922
|
-
------------------------
|
923
|
-
BigmouthTest: test_truth
|
924
|
-
------------------------
|
925
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
926
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
927
|
-
[1m[35m (0.1ms)[0m begin transaction
|
928
|
-
[1m[36mFixture Delete (0.4ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
929
|
-
[1m[35mFixture Insert (0.2ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
931
|
-
[1m[35mFixture Delete (0.1ms)[0m DELETE FROM "users"
|
932
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
933
|
-
[1m[35m (0.8ms)[0m commit transaction
|
934
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
935
|
-
----------------------------------------------------------------------------
|
936
|
-
Bigmouth::ArticlesControllerTest: test_should_not_get_new_without_logging_in
|
937
|
-
----------------------------------------------------------------------------
|
938
|
-
[1m[35mBigmouth::Article Load (0.2ms)[0m SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
|
939
|
-
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["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
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
945
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
946
|
-
-------------------------------------------------------
|
947
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
948
|
-
-------------------------------------------------------
|
949
|
-
[1m[35mBigmouth::Article Load (0.1ms)[0m SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
|
950
|
-
[1m[36mUser Load (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
951
|
-
Processing by Bigmouth::ArticlesController#index as HTML
|
952
|
-
[1m[35mBigmouth::Article Load (0.1ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
956
|
-
[1m[35m (0.1ms)[0m begin transaction
|
957
|
-
---------------------------------------------------------------------
|
958
|
-
Bigmouth::ArticlesControllerTest: test_should_get_new_when_logging_in
|
959
|
-
---------------------------------------------------------------------
|
960
|
-
[1m[36mBigmouth::Article Load (0.1ms)[0m [1mSELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
961
|
-
[1m[35mUser Load (0.0ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
967
|
-
[1m[35m (0.0ms)[0m begin transaction
|
968
|
-
------------------------
|
969
|
-
BigmouthTest: test_truth
|
970
|
-
------------------------
|
971
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
972
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
973
|
-
[1m[35m (0.1ms)[0m begin transaction
|
974
|
-
[1m[36mFixture Delete (0.2ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
975
|
-
[1m[35mFixture Insert (0.3ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
977
|
-
[1m[35mFixture Delete (0.2ms)[0m DELETE FROM "users"
|
978
|
-
[1m[36mFixture Insert (0.2ms)[0m [1mINSERT 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)[0m
|
979
|
-
[1m[35m (1.0ms)[0m commit transaction
|
980
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
981
|
-
-------------------------------------------------------
|
982
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
983
|
-
-------------------------------------------------------
|
984
|
-
[1m[35mBigmouth::Article Load (0.2ms)[0m SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
|
985
|
-
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
986
|
-
Processing by Bigmouth::ArticlesController#index as HTML
|
987
|
-
[1m[35mBigmouth::Article Load (0.1ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
991
|
-
[1m[35m (0.0ms)[0m begin transaction
|
992
|
-
---------------------------------------------------------------------
|
993
|
-
Bigmouth::ArticlesControllerTest: test_should_get_new_when_logging_in
|
994
|
-
---------------------------------------------------------------------
|
995
|
-
[1m[36mBigmouth::Article Load (0.1ms)[0m [1mSELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
996
|
-
[1m[35mUser Load (0.0ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1002
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1003
|
-
----------------------------------------------------------------------------
|
1004
|
-
Bigmouth::ArticlesControllerTest: test_should_not_get_new_without_logging_in
|
1005
|
-
----------------------------------------------------------------------------
|
1006
|
-
[1m[36mBigmouth::Article Load (0.1ms)[0m [1mSELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
1007
|
-
[1m[35mUser Load (0.0ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1013
|
-
[1m[35m (0.0ms)[0m begin transaction
|
1014
|
-
------------------------
|
1015
|
-
BigmouthTest: test_truth
|
1016
|
-
------------------------
|
1017
|
-
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1018
|
-
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1019
|
-
[1m[35m (0.1ms)[0m begin transaction
|
1020
|
-
[1m[36mFixture Delete (0.3ms)[0m [1mDELETE FROM "bigmouth_articles"[0m
|
1021
|
-
[1m[35mFixture Insert (0.2ms)[0m 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
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1023
|
-
[1m[35mFixture Delete (0.2ms)[0m DELETE FROM "users"
|
1024
|
-
[1m[36mFixture Insert (0.1ms)[0m [1mINSERT 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)[0m
|
1025
|
-
[1m[35m (5.7ms)[0m commit transaction
|
1026
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1027
|
-
------------------------
|
1028
|
-
BigmouthTest: test_truth
|
1029
|
-
------------------------
|
1030
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1031
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1032
|
-
----------------------------------------------------------------------------
|
1033
|
-
Bigmouth::ArticlesControllerTest: test_should_not_get_new_without_logging_in
|
1034
|
-
----------------------------------------------------------------------------
|
1035
|
-
[1m[35mBigmouth::Article Load (0.2ms)[0m SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
|
1036
|
-
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["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
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
1042
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1043
|
-
-------------------------------------------------------
|
1044
|
-
Bigmouth::ArticlesControllerTest: test_should_get_index
|
1045
|
-
-------------------------------------------------------
|
1046
|
-
[1m[35mBigmouth::Article Load (0.1ms)[0m SELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1 [["id", 980190962]]
|
1047
|
-
[1m[36mUser Load (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
1048
|
-
Processing by Bigmouth::ArticlesController#index as HTML
|
1049
|
-
[1m[35mBigmouth::Article Load (0.1ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1053
|
-
[1m[35m (0.1ms)[0m begin transaction
|
1054
|
-
---------------------------------------------------------------------
|
1055
|
-
Bigmouth::ArticlesControllerTest: test_should_get_new_when_logging_in
|
1056
|
-
---------------------------------------------------------------------
|
1057
|
-
[1m[36mBigmouth::Article Load (0.1ms)[0m [1mSELECT "bigmouth_articles".* FROM "bigmouth_articles" WHERE "bigmouth_articles"."id" = ? LIMIT 1[0m [["id", 980190962]]
|
1058
|
-
[1m[35mUser Load (0.0ms)[0m 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
|
-
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|