groonga-client-model 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (192) hide show
  1. checksums.yaml +7 -0
  2. data/.yardopts +5 -0
  3. data/Gemfile +23 -0
  4. data/README.md +38 -0
  5. data/Rakefile +46 -0
  6. data/doc/text/lgpl-2.1.txt +502 -0
  7. data/doc/text/news.md +5 -0
  8. data/groonga-client-model.gemspec +55 -0
  9. data/lib/groonga-client-model.rb +40 -0
  10. data/lib/groonga_client_model/client.rb +37 -0
  11. data/lib/groonga_client_model/client_opener.rb +24 -0
  12. data/lib/groonga_client_model/error.rb +46 -0
  13. data/lib/groonga_client_model/load_value_generator.rb +54 -0
  14. data/lib/groonga_client_model/modelizable.rb +26 -0
  15. data/lib/groonga_client_model/modelize.rb +83 -0
  16. data/lib/groonga_client_model/railtie.rb +62 -0
  17. data/lib/groonga_client_model/record.rb +324 -0
  18. data/lib/groonga_client_model/schema.rb +109 -0
  19. data/lib/groonga_client_model/spec_helper.rb +27 -0
  20. data/lib/groonga_client_model/test_helper.rb +27 -0
  21. data/lib/groonga_client_model/version.rb +19 -0
  22. data/test/apps/rails5/Gemfile +50 -0
  23. data/test/apps/rails5/Gemfile.lock +208 -0
  24. data/test/apps/rails5/README.md +24 -0
  25. data/test/apps/rails5/Rakefile +6 -0
  26. data/test/apps/rails5/app/assets/config/manifest.js +3 -0
  27. data/test/apps/rails5/app/assets/javascripts/application.js +16 -0
  28. data/test/apps/rails5/app/assets/javascripts/cable.js +13 -0
  29. data/test/apps/rails5/app/assets/javascripts/posts.coffee +3 -0
  30. data/test/apps/rails5/app/assets/stylesheets/application.css +15 -0
  31. data/test/apps/rails5/app/assets/stylesheets/posts.scss +3 -0
  32. data/test/apps/rails5/app/assets/stylesheets/scaffolds.scss +89 -0
  33. data/test/apps/rails5/app/channels/application_cable/channel.rb +4 -0
  34. data/test/apps/rails5/app/channels/application_cable/connection.rb +4 -0
  35. data/test/apps/rails5/app/controllers/application_controller.rb +3 -0
  36. data/test/apps/rails5/app/controllers/posts_controller.rb +74 -0
  37. data/test/apps/rails5/app/helpers/application_helper.rb +2 -0
  38. data/test/apps/rails5/app/helpers/posts_helper.rb +2 -0
  39. data/test/apps/rails5/app/jobs/application_job.rb +2 -0
  40. data/test/apps/rails5/app/mailers/application_mailer.rb +4 -0
  41. data/test/apps/rails5/app/models/post.rb +2 -0
  42. data/test/apps/rails5/app/views/layouts/application.html.erb +14 -0
  43. data/test/apps/rails5/app/views/layouts/mailer.html.erb +13 -0
  44. data/test/apps/rails5/app/views/layouts/mailer.text.erb +1 -0
  45. data/test/apps/rails5/app/views/posts/_form.html.erb +27 -0
  46. data/test/apps/rails5/app/views/posts/_post.json.jbuilder +2 -0
  47. data/test/apps/rails5/app/views/posts/edit.html.erb +6 -0
  48. data/test/apps/rails5/app/views/posts/index.html.erb +29 -0
  49. data/test/apps/rails5/app/views/posts/index.json.jbuilder +1 -0
  50. data/test/apps/rails5/app/views/posts/new.html.erb +5 -0
  51. data/test/apps/rails5/app/views/posts/show.html.erb +14 -0
  52. data/test/apps/rails5/app/views/posts/show.json.jbuilder +1 -0
  53. data/test/apps/rails5/bin/bundle +3 -0
  54. data/test/apps/rails5/bin/rails +9 -0
  55. data/test/apps/rails5/bin/rake +9 -0
  56. data/test/apps/rails5/bin/setup +34 -0
  57. data/test/apps/rails5/bin/spring +16 -0
  58. data/test/apps/rails5/bin/update +29 -0
  59. data/test/apps/rails5/config.ru +5 -0
  60. data/test/apps/rails5/config/application.rb +25 -0
  61. data/test/apps/rails5/config/boot.rb +3 -0
  62. data/test/apps/rails5/config/cable.yml +9 -0
  63. data/test/apps/rails5/config/environment.rb +5 -0
  64. data/test/apps/rails5/config/environments/development.rb +51 -0
  65. data/test/apps/rails5/config/environments/production.rb +83 -0
  66. data/test/apps/rails5/config/environments/test.rb +42 -0
  67. data/test/apps/rails5/config/groonga.yml +8 -0
  68. data/test/apps/rails5/config/initializers/application_controller_renderer.rb +6 -0
  69. data/test/apps/rails5/config/initializers/assets.rb +11 -0
  70. data/test/apps/rails5/config/initializers/backtrace_silencers.rb +7 -0
  71. data/test/apps/rails5/config/initializers/cookies_serializer.rb +5 -0
  72. data/test/apps/rails5/config/initializers/filter_parameter_logging.rb +4 -0
  73. data/test/apps/rails5/config/initializers/inflections.rb +16 -0
  74. data/test/apps/rails5/config/initializers/mime_types.rb +4 -0
  75. data/test/apps/rails5/config/initializers/new_framework_defaults.rb +21 -0
  76. data/test/apps/rails5/config/initializers/session_store.rb +3 -0
  77. data/test/apps/rails5/config/initializers/wrap_parameters.rb +9 -0
  78. data/test/apps/rails5/config/locales/en.yml +23 -0
  79. data/test/apps/rails5/config/puma.rb +47 -0
  80. data/test/apps/rails5/config/routes.rb +4 -0
  81. data/test/apps/rails5/config/secrets.yml +22 -0
  82. data/test/apps/rails5/config/spring.rb +6 -0
  83. data/test/apps/rails5/db/schema.grn +9 -0
  84. data/test/apps/rails5/db/seeds.rb +7 -0
  85. data/test/apps/rails5/log/development.log +348 -0
  86. data/test/apps/rails5/log/test.log +1824 -0
  87. data/test/apps/rails5/public/404.html +67 -0
  88. data/test/apps/rails5/public/422.html +67 -0
  89. data/test/apps/rails5/public/500.html +66 -0
  90. data/test/apps/rails5/public/apple-touch-icon-precomposed.png +0 -0
  91. data/test/apps/rails5/public/apple-touch-icon.png +0 -0
  92. data/test/apps/rails5/public/favicon.ico +0 -0
  93. data/test/apps/rails5/public/robots.txt +5 -0
  94. data/test/apps/rails5/test/controllers/posts_controller_test.rb +50 -0
  95. data/test/apps/rails5/test/factories/posts.rb +6 -0
  96. data/test/apps/rails5/test/test_helper.rb +9 -0
  97. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/-8/-8MPXp-nRdAuudlPZG0-fjIhSfT9c-mruIMNR_HnpTE.cache +2 -0
  98. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/04/04zh1ytKDagWzWcqUyadXtzzohCn9iVvSVG4KrjpfPU.cache +0 -0
  99. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/0M/0M4bZ4tQh0MQYZMb72U5yr-ELStAsUSb8akkTME9TPM.cache +0 -0
  100. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/0g/0gB1rYz79RuAa43DzVci1GUjc5so0F1dU_LyLSmm3oQ.cache +0 -0
  101. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/1w/1w3lEnPL9oZPD-uk9Y9HOAO5TBywbDUumPsLKAD1trs.cache +1 -0
  102. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/2g/2gve43APDqh4mVsNSvvDZWU7XBUFJ22DjchDFC7BLHE.cache +1 -0
  103. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/3F/3Fsw9a9YyB3-WaDSpA1HTGJrWn_7xMLLpUYcNv4f4zs.cache +1 -0
  104. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/3P/3Px3lDIUtsiFfGy4nQGown3yldwKCp1MNuWbSDX1pvg.cache +0 -0
  105. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/46/46uDYcwHwTAfdjT4Cxqs7pC3FEBf4GNj8S36-TDtT18.cache +2 -0
  106. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/5g/5gcXfyU_2YGZzzLIX2HgVkpwSaUUyIH9beyVvR4-RyM.cache +0 -0
  107. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/6a/6ae9A4LxsOF8WxXqTRrY_OfmiKLzuX-k8CdxcYhyH2w.cache +0 -0
  108. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/6g/6gfb-nNauXmim2itNUscPWKLGmjzBgnE4ee76bNftS4.cache +1 -0
  109. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/71/71Km0xL27urBNH3LVGVQ7MXXtuIePWU9VsJ4VjSeMac.cache +1 -0
  110. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/8Z/8Zm1d9-lBPsGG_HUw8FP2OCCVucGDVhWAOGaopvOdss.cache +0 -0
  111. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/8w/8wTyiibSVQ_CunXEyCjFUbzdSEAuSbH0z5XuCUXG0EA.cache +0 -0
  112. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/9p/9pkKAqd_Ia0HpbbUCZtpJ8WiDzr5stcFJsnqsOsJwCc.cache +0 -0
  113. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/B9/B9QeeLv4GR9sOdrwyvxa8jIr4MkxjYh4Ow6MOZ8slX8.cache +0 -0
  114. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/BK/BKtHbqHUW-BUh6yXbZoSBLGYZdH4xpyEVJZ85mre3dI.cache +1 -0
  115. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/Bx/BxzoG0KxeNLac4xTNeJv3qfeytbNBw58xj2zD-xdbrE.cache +0 -0
  116. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/DG/DGB9_ZZc6xf8xDs1C8MTwsnZGITqTg5w6Fi8loIoAz0.cache +1 -0
  117. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/DI/DIQbAB3xoMpwIuVisoyQuLOOLReZGqTzMsMSqPTvNlU.cache +1 -0
  118. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/Dc/Dcujr9N54L76juPEo4EOYs8buHy8vO2fp-AjoG42-uQ.cache +0 -0
  119. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/Dw/DwMpASR_zMhZCB0WD5ibeEaOAEhod-gPDA-cl83A0NQ.cache +1 -0
  120. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/F2/F2G2wQz7oPKX0Y4KCAUyw79ULHKyiweLkqbo4uclz2M.cache +0 -0
  121. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/F4/F4Vm2jVryhME1Ux-h1fCIbynttYJmSOV0lzVQihiIas.cache +0 -0
  122. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/G0/G0kukI-r0q0Vbrg6e_jnYJoYcOX8K__h-mwKbCf4twE.cache +2 -0
  123. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/H4/H4qMae4wP-2E0IT3OzIKJm7TAmkfgTg5GG-mDvrpRr8.cache +1 -0
  124. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/HJ/HJmxnxAVu4ESMb2RUFATQhzd8xP7qwk0i7Or2WU6tHY.cache +1 -0
  125. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/Ih/IhFDQr9KaIbw7KJmoi9sRJ2CWZtxt72J0Eu2HDAQYJA.cache +1 -0
  126. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/J-/J-hbdFdKmhYgVvczTzQyQ6ToGIL2Ucw2qCT6Y1oOPhg.cache +1 -0
  127. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/KZ/KZDZMIUD9LD98z__9bjCHLnzjcGoKSnlxuHH1cEiw6M.cache +1 -0
  128. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/LD/LDzW9KshYb0NgRzu1HyrKQlc3satBlIIOEHET_I4TjA.cache +1 -0
  129. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/Mw/MwUXpv2ArJcHhHfRN-i_SHhOyrhE2ED5DP6j2_tHtDM.cache +1 -0
  130. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/N6/N6_UDcd-9vm063oO9Kj2UKERXHyG53mpljIHhMP_sX0.cache +1 -0
  131. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/Ot/OttEu6oltiTErpVGZQJA3vWOb24u3_w28yMEG-Gs0tA.cache +1 -0
  132. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/P1/P1Ojlz0OChhbxGf83KhMWxJFzKZ3unhLwJ1UoH5U7ss.cache +1 -0
  133. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/Pz/PzsjxNnBT0RlIX-T49i6Iyrc_XG8IaJ-F55_x52md8M.cache +0 -0
  134. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/Q0/Q0AeQIZuDbFTvWKLlSaL-R4XKHuiymwgVvQUqxxVq_k.cache +0 -0
  135. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/Qr/Qrr38H1OZvkfozoMfcDEQ-arpbO7PFQ47i70UTEeWnk.cache +1 -0
  136. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/Qw/QwtseSptjk29vLQAs9XVSY_9GY6mR4wLQ6e3xJZzwuo.cache +1 -0
  137. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/Rf/RfAETGxupO0E6Sf50S9Rs_7H_8IFQkZ0V_Ot0qRcMaM.cache +1 -0
  138. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/S1/S1RgRu3SVlB0u9krRyLUpNzVgKMN9Pk_KMWLehP2SUc.cache +1 -0
  139. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/SN/SNLpl8dBME7slRhucvmV_kjMQImk-VGiILaga5lEcBM.cache +0 -0
  140. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/SO/SOU1TEHFYRVejiA6nBNRm3Bwq_YtPlxSXK0VM3y3vto.cache +0 -0
  141. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/Sd/Sda0ZUElAQoD0SXBgNqF99THI2KdVA4YOcdhAyZxPsY.cache +1 -0
  142. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/Sh/ShN-ZUpoxLJLJiMV5gFDP00vcSMHw87YzFBlXH4adPA.cache +0 -0
  143. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/Si/Sin6bEoASrNa45108CpfgF2jcifz-KpbsvvZJtqVZ68.cache +0 -0
  144. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/TI/TIt8bfq26rstydJvFM28p05FfB6s8Qjr6EoF6EtQUEc.cache +1 -0
  145. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/Uk/UkodNPk80caeUqn1HNQXMB1qV-c-4l-vBFHb7fd5ZGw.cache +1 -0
  146. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/Uw/Uws4qYyGLobvE_JD4L6dQNcIOOhv4LEZ3D0mK86tZOA.cache +1 -0
  147. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/Wm/WmtvDDxglSnhmavMeA7WNn7waN3QbagRHeoZHvZJN84.cache +1 -0
  148. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/X6/X6u2Cul1j8SpBq0WC1S8WhzGiT6f-6L_djUngh_gQfw.cache +0 -0
  149. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/Xe/XeuTfsFtikyfcpzyNjJW7GvVARtV7EFUF8V9lJuS9zs.cache +0 -0
  150. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/Ya/YayMISAqD-Y3vBFywwKrXbUovGf5o77HUF5s8mnQgO0.cache +0 -0
  151. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/Z2/Z2fYOjvDRsoVXYUWY_QLV3gqU-HobuEZ7vKRjuJO-80.cache +1 -0
  152. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/Zj/ZjPZKMxS8BzA1QxHFURXSpprFItP8iIYNCg6yfbO69Y.cache +1 -0
  153. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/a7/a7_aLHXKzPVK1lGdqvWuCl5hXxwSIGH4kcxuF7jMzgE.cache +1 -0
  154. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/c9/c9YydpmE9rI8VeQ4sVqd5JrA1VSEFGGzpuMBUSrAGac.cache +0 -0
  155. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/cB/cBjyp28toLdtY2EFK9cqrbDnrwBSFI7T_vLNoGz-u_U.cache +0 -0
  156. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/cT/cT8i2C4yg0R2UYvutxD-4kbdJF09toG1OUgtd6NAf2M.cache +0 -0
  157. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/cU/cUegCc5wz5f7rfqzD7wrbN633pZRWeewi9j1lJ895Y0.cache +0 -0
  158. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/dA/dAab_MVPXubReIXiKSsP0TGA9dXca0KkwVLz7xNJNmA.cache +0 -0
  159. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/eY/eYUlaSCg8w9Jp-IVGbffopOhH4C94vGA0w6SaC88FM8.cache +1 -0
  160. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/eo/eoSb6VtmOhc2zv4rO1yMBf6hjUj7zHVkSMiNZ7Y576w.cache +1 -0
  161. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/gm/gmeq3PfpFbfe2L0ijWzw1Dzny6T-kD3zREQjh6XGs-o.cache +0 -0
  162. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/he/heptoj4xFW23bqbGAnQ2g6MsS3OKgswQZOu4EFQA9CE.cache +1 -0
  163. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/kN/kNQUVmgZpBoZh9oC57J3qRmnvFOb8zfDeJWar6cPJFM.cache +1 -0
  164. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/km/km1UJe7Uvz3cE03ctzec3Mpcow_vgKO36rq50_Szy3o.cache +5 -0
  165. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/kv/kvOgs1tp83VikXcBjupUg71ybkDcx1pBzH2Dw6mVa7A.cache +1 -0
  166. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/kz/kzw210ITXFWNFV8kw5e-_kRlpS48lGotSQWKPlUfMJ4.cache +0 -0
  167. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/m-/m-gDByrlve8T_OZCCZCaGVlLUnbGWk0qkv7naFMcLDg.cache +1 -0
  168. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/m8/m8XSfEV5J53MzAtMK6udqOZh9S_uC-tELG327hLnWT4.cache +1 -0
  169. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache +0 -0
  170. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/na/naKBB6bJXEjSAfrBfAiXlIzJDRGTsRrbQlI5FezRxnM.cache +1 -0
  171. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/nx/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache +0 -0
  172. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/oU/oUgVYeNUmvSbf5MWq5a-nknLIlepM8oMGSWyD1J5bzg.cache +0 -0
  173. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/pN/pNBMBzHv-_a5u4lbxQmRsv_hzWZOk93wX3hlG4y4X5E.cache +1 -0
  174. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/pb/pb0V-IHbOTzmTuDDHO7dn8kl3G4RWqXYY1-Gtuklh-M.cache +1 -0
  175. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/pq/pqi4pYpSRroaGdwCXuATmVeb1U-mvzUU8zeWu6o5ooo.cache +0 -0
  176. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/q9/q9zC8RrLhOO1dVXJ3fZqc9dSbshhjSpsDQxh5MpbnDA.cache +0 -0
  177. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/qP/qPmv5snMrDw830S6hSICDcnIy7kVEWoFKXhGKT38lG4.cache +2 -0
  178. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/rn/rnjUJtM3qyEybb7S3NaVbV36OvY6ulGzqxgvp6vtkW0.cache +1 -0
  179. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/rv/rvA5ImExxmMtvHSKmwVMXxnVzM4istECfBR-LxbUf8I.cache +0 -0
  180. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/sS/sSg6UsW5PPi591GTK35btFew1r3_HpbNHoyZv3vZ_HY.cache +1 -0
  181. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/t3/t39F_1zIFMdWiKVUNJyhWOOnP8Lgr6AD5R1HWdVYwbU.cache +0 -0
  182. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/tV/tVL6qud2OxyiMT_-izeWpZa4KnypOUhK0XjwBIPVgi0.cache +0 -0
  183. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/uo/uo2nRPLQSA3FmFVLvE-9uXW64Xx-Gp799qSF3vui1WE.cache +0 -0
  184. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/x7/x7PYh8DJvPykcEqpVab2vcY9-GFz-3cqtoMlRAu94Uc.cache +0 -0
  185. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/xU/xUR-yFcc0UZR2BLp-jBU9bjPiIYophx6ep5yBEeQCM8.cache +1 -0
  186. data/test/apps/rails5/tmp/cache/assets/sprockets/v3.0/zh/zhmfmdnnow0QqwfT_7IXfN-FAU8qAMm03N7XQjFct6E.cache +1 -0
  187. data/test/apps/rails5/tmp/restart.txt +0 -0
  188. data/test/run-test.rb +49 -0
  189. data/test/unit/run-test.rb +35 -0
  190. data/test/unit/test_load_value_generator.rb +79 -0
  191. data/test/unit/test_record.rb +52 -0
  192. metadata +516 -0
@@ -0,0 +1,1824 @@
1
+ ----------------------------------------
2
+ PostsControllerTest: test_should_get_new
3
+ ----------------------------------------
4
+ ------------------------------------------
5
+ PostsControllerTest: test_should_show_post
6
+ ------------------------------------------
7
+ -----------------------------------------
8
+ PostsControllerTest: test_should_get_edit
9
+ -----------------------------------------
10
+ --------------------------------------------
11
+ PostsControllerTest: test_should_create_post
12
+ --------------------------------------------
13
+ ------------------------------------------
14
+ PostsControllerTest: test_should_get_index
15
+ ------------------------------------------
16
+ ---------------------------------------------
17
+ PostsControllerTest: test_should_destroy_post
18
+ ---------------------------------------------
19
+ --------------------------------------------
20
+ PostsControllerTest: test_should_update_post
21
+ --------------------------------------------
22
+ ---------------------------------------------
23
+ PostsControllerTest: test_should_destroy_post
24
+ ---------------------------------------------
25
+ --------------------------------------------
26
+ PostsControllerTest: test_should_create_post
27
+ --------------------------------------------
28
+ ------------------------------------------
29
+ PostsControllerTest: test_should_show_post
30
+ ------------------------------------------
31
+ --------------------------------------------
32
+ PostsControllerTest: test_should_update_post
33
+ --------------------------------------------
34
+ ----------------------------------------
35
+ PostsControllerTest: test_should_get_new
36
+ ----------------------------------------
37
+ -----------------------------------------
38
+ PostsControllerTest: test_should_get_edit
39
+ -----------------------------------------
40
+ ------------------------------------------
41
+ PostsControllerTest: test_should_get_index
42
+ ------------------------------------------
43
+ ---------------------------------------------
44
+ PostsControllerTest: test_should_destroy_post
45
+ ---------------------------------------------
46
+ -----------------------------------------
47
+ PostsControllerTest: test_should_get_edit
48
+ -----------------------------------------
49
+ --------------------------------------------
50
+ PostsControllerTest: test_should_update_post
51
+ --------------------------------------------
52
+ ----------------------------------------
53
+ PostsControllerTest: test_should_get_new
54
+ ----------------------------------------
55
+ ------------------------------------------
56
+ PostsControllerTest: test_should_get_index
57
+ ------------------------------------------
58
+ ------------------------------------------
59
+ PostsControllerTest: test_should_show_post
60
+ ------------------------------------------
61
+ --------------------------------------------
62
+ PostsControllerTest: test_should_create_post
63
+ --------------------------------------------
64
+ ---------------------------------------------
65
+ PostsControllerTest: test_should_destroy_post
66
+ ---------------------------------------------
67
+ ------------------------------------------
68
+ PostsControllerTest: test_should_show_post
69
+ ------------------------------------------
70
+ --------------------------------------------
71
+ PostsControllerTest: test_should_create_post
72
+ --------------------------------------------
73
+ -----------------------------------------
74
+ PostsControllerTest: test_should_get_edit
75
+ -----------------------------------------
76
+ ----------------------------------------
77
+ PostsControllerTest: test_should_get_new
78
+ ----------------------------------------
79
+ ------------------------------------------
80
+ PostsControllerTest: test_should_get_index
81
+ ------------------------------------------
82
+ --------------------------------------------
83
+ PostsControllerTest: test_should_update_post
84
+ --------------------------------------------
85
+ --------------------------------------------
86
+ PostsControllerTest: test_should_update_post
87
+ --------------------------------------------
88
+ ------------------------------------------
89
+ PostsControllerTest: test_should_get_index
90
+ ------------------------------------------
91
+ Started GET "/posts" for 127.0.0.1 at 2016-12-05 17:54:25 +0900
92
+ Processing by PostsController#index as HTML
93
+ Rendering posts/index.html.erb within layouts/application
94
+ Rendered posts/index.html.erb within layouts/application (3.7ms)
95
+ Completed 200 OK in 211ms (Views: 201.9ms)
96
+ -----------------------------------------
97
+ PostsControllerTest: test_should_get_edit
98
+ -----------------------------------------
99
+ ---------------------------------------------
100
+ PostsControllerTest: test_should_destroy_post
101
+ ---------------------------------------------
102
+ ------------------------------------------
103
+ PostsControllerTest: test_should_show_post
104
+ ------------------------------------------
105
+ --------------------------------------------
106
+ PostsControllerTest: test_should_create_post
107
+ --------------------------------------------
108
+ ----------------------------------------
109
+ PostsControllerTest: test_should_get_new
110
+ ----------------------------------------
111
+ Started GET "/posts/new" for 127.0.0.1 at 2016-12-05 17:54:25 +0900
112
+ Processing by PostsController#new as HTML
113
+ Rendering posts/new.html.erb within layouts/application
114
+ Rendered posts/_form.html.erb (12.5ms)
115
+ Rendered posts/new.html.erb within layouts/application (13.3ms)
116
+ Completed 200 OK in 16ms (Views: 15.2ms)
117
+ --------------------------------------------
118
+ PostsControllerTest: test_should_create_post
119
+ --------------------------------------------
120
+ -----------------------------------------
121
+ PostsControllerTest: test_should_get_edit
122
+ -----------------------------------------
123
+ ---------------------------------------------
124
+ PostsControllerTest: test_should_destroy_post
125
+ ---------------------------------------------
126
+ ------------------------------------------
127
+ PostsControllerTest: test_should_show_post
128
+ ------------------------------------------
129
+ ----------------------------------------
130
+ PostsControllerTest: test_should_get_new
131
+ ----------------------------------------
132
+ Started GET "/posts/new" for 127.0.0.1 at 2016-12-05 17:57:30 +0900
133
+ Processing by PostsController#new as HTML
134
+ Rendering posts/new.html.erb within layouts/application
135
+ Rendered posts/_form.html.erb (11.8ms)
136
+ Rendered posts/new.html.erb within layouts/application (13.0ms)
137
+ Completed 200 OK in 133ms (Views: 126.5ms)
138
+ --------------------------------------------
139
+ PostsControllerTest: test_should_update_post
140
+ --------------------------------------------
141
+ ------------------------------------------
142
+ PostsControllerTest: test_should_get_index
143
+ ------------------------------------------
144
+ Started GET "/posts" for 127.0.0.1 at 2016-12-05 17:57:30 +0900
145
+ Processing by PostsController#index as HTML
146
+ Rendering posts/index.html.erb within layouts/application
147
+ Rendered posts/index.html.erb within layouts/application (2.3ms)
148
+ Completed 200 OK in 6ms (Views: 4.1ms)
149
+ ---------------------------------------------
150
+ PostsControllerTest: test_should_destroy_post
151
+ ---------------------------------------------
152
+ ----------------------------------------
153
+ PostsControllerTest: test_should_get_new
154
+ ----------------------------------------
155
+ Started GET "/posts/new" for 127.0.0.1 at 2016-12-05 17:58:03 +0900
156
+ Processing by PostsController#new as HTML
157
+ Rendering posts/new.html.erb within layouts/application
158
+ Rendered posts/_form.html.erb (12.0ms)
159
+ Rendered posts/new.html.erb within layouts/application (13.2ms)
160
+ Completed 200 OK in 131ms (Views: 123.6ms)
161
+ --------------------------------------------
162
+ PostsControllerTest: test_should_update_post
163
+ --------------------------------------------
164
+ -----------------------------------------
165
+ PostsControllerTest: test_should_get_edit
166
+ -----------------------------------------
167
+ ------------------------------------------
168
+ PostsControllerTest: test_should_get_index
169
+ ------------------------------------------
170
+ Started GET "/posts" for 127.0.0.1 at 2016-12-05 17:58:03 +0900
171
+ Processing by PostsController#index as HTML
172
+ Rendering posts/index.html.erb within layouts/application
173
+ Rendered posts/index.html.erb within layouts/application (3.3ms)
174
+ Completed 200 OK in 7ms (Views: 5.2ms)
175
+ ------------------------------------------
176
+ PostsControllerTest: test_should_show_post
177
+ ------------------------------------------
178
+ --------------------------------------------
179
+ PostsControllerTest: test_should_create_post
180
+ --------------------------------------------
181
+ Started POST "/posts" for 127.0.0.1 at 2016-12-05 17:58:03 +0900
182
+ Processing by PostsController#create as HTML
183
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}}
184
+ Redirected to
185
+ Completed 500 Internal Server Error in 2ms
186
+ -----------------------------------------
187
+ PostsControllerTest: test_should_get_edit
188
+ -----------------------------------------
189
+ Started GET "/posts/0/edit" for 127.0.0.1 at 2016-12-05 17:58:31 +0900
190
+ Processing by PostsController#edit as HTML
191
+ Parameters: {"id"=>"0"}
192
+ Completed 404 Not Found in 7ms
193
+ ------------------------------------------
194
+ PostsControllerTest: test_should_show_post
195
+ ------------------------------------------
196
+ Started GET "/posts/0" for 127.0.0.1 at 2016-12-05 17:58:31 +0900
197
+ Processing by PostsController#show as HTML
198
+ Parameters: {"id"=>"0"}
199
+ Completed 404 Not Found in 1ms
200
+ --------------------------------------------
201
+ PostsControllerTest: test_should_update_post
202
+ --------------------------------------------
203
+ Started PATCH "/posts/0" for 127.0.0.1 at 2016-12-05 17:58:31 +0900
204
+ Processing by PostsController#update as HTML
205
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}, "id"=>"0"}
206
+ Completed 404 Not Found in 1ms
207
+ --------------------------------------------
208
+ PostsControllerTest: test_should_create_post
209
+ --------------------------------------------
210
+ Started POST "/posts" for 127.0.0.1 at 2016-12-05 17:58:31 +0900
211
+ Processing by PostsController#create as HTML
212
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}}
213
+ Redirected to http://www.example.com/posts/0
214
+ Completed 302 Found in 4ms
215
+ ------------------------------------------
216
+ PostsControllerTest: test_should_get_index
217
+ ------------------------------------------
218
+ Started GET "/posts" for 127.0.0.1 at 2016-12-05 17:58:31 +0900
219
+ Processing by PostsController#index as HTML
220
+ Rendering posts/index.html.erb within layouts/application
221
+ Rendered posts/index.html.erb within layouts/application (6.8ms)
222
+ Completed 200 OK in 119ms (Views: 117.6ms)
223
+ ----------------------------------------
224
+ PostsControllerTest: test_should_get_new
225
+ ----------------------------------------
226
+ Started GET "/posts/new" for 127.0.0.1 at 2016-12-05 17:58:31 +0900
227
+ Processing by PostsController#new as HTML
228
+ Rendering posts/new.html.erb within layouts/application
229
+ Rendered posts/_form.html.erb (9.7ms)
230
+ Rendered posts/new.html.erb within layouts/application (10.4ms)
231
+ Completed 200 OK in 13ms (Views: 12.2ms)
232
+ ---------------------------------------------
233
+ PostsControllerTest: test_should_destroy_post
234
+ ---------------------------------------------
235
+ Started DELETE "/posts/0" for 127.0.0.1 at 2016-12-05 17:58:31 +0900
236
+ Processing by PostsController#destroy as HTML
237
+ Parameters: {"id"=>"0"}
238
+ Completed 404 Not Found in 1ms
239
+ ----------------------------------------
240
+ PostsControllerTest: test_should_get_new
241
+ ----------------------------------------
242
+ Started GET "/posts/new" for 127.0.0.1 at 2016-12-05 18:03:01 +0900
243
+ Processing by PostsController#new as HTML
244
+ Rendering posts/new.html.erb within layouts/application
245
+ Rendered posts/_form.html.erb (11.7ms)
246
+ Rendered posts/new.html.erb within layouts/application (12.9ms)
247
+ Completed 200 OK in 131ms (Views: 125.1ms)
248
+ --------------------------------------------
249
+ PostsControllerTest: test_should_create_post
250
+ --------------------------------------------
251
+ Started POST "/posts" for 127.0.0.1 at 2016-12-05 18:03:01 +0900
252
+ Processing by PostsController#create as HTML
253
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}}
254
+ Redirected to http://www.example.com/posts/0
255
+ Completed 302 Found in 2ms
256
+ -----------------------------------------
257
+ PostsControllerTest: test_should_get_edit
258
+ -----------------------------------------
259
+ Started GET "/posts/0/edit" for 127.0.0.1 at 2016-12-05 18:03:01 +0900
260
+ Processing by PostsController#edit as HTML
261
+ Parameters: {"id"=>"0"}
262
+ Completed 404 Not Found in 2ms
263
+ ------------------------------------------
264
+ PostsControllerTest: test_should_get_index
265
+ ------------------------------------------
266
+ Started GET "/posts" for 127.0.0.1 at 2016-12-05 18:03:01 +0900
267
+ Processing by PostsController#index as HTML
268
+ Rendering posts/index.html.erb within layouts/application
269
+ Rendered posts/index.html.erb within layouts/application (5.0ms)
270
+ Completed 200 OK in 9ms (Views: 7.1ms)
271
+ ---------------------------------------------
272
+ PostsControllerTest: test_should_destroy_post
273
+ ---------------------------------------------
274
+ Started DELETE "/posts/0" for 127.0.0.1 at 2016-12-05 18:03:01 +0900
275
+ Processing by PostsController#destroy as HTML
276
+ Parameters: {"id"=>"0"}
277
+ Completed 404 Not Found in 2ms
278
+ --------------------------------------------
279
+ PostsControllerTest: test_should_update_post
280
+ --------------------------------------------
281
+ Started PATCH "/posts/0" for 127.0.0.1 at 2016-12-05 18:03:01 +0900
282
+ Processing by PostsController#update as HTML
283
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}, "id"=>"0"}
284
+ Completed 404 Not Found in 2ms
285
+ ------------------------------------------
286
+ PostsControllerTest: test_should_show_post
287
+ ------------------------------------------
288
+ Started GET "/posts/0" for 127.0.0.1 at 2016-12-05 18:03:01 +0900
289
+ Processing by PostsController#show as HTML
290
+ Parameters: {"id"=>"0"}
291
+ Completed 404 Not Found in 2ms
292
+ --------------------------------------------
293
+ PostsControllerTest: test_should_update_post
294
+ --------------------------------------------
295
+ ------------------------------------------
296
+ PostsControllerTest: test_should_show_post
297
+ ------------------------------------------
298
+ ---------------------------------------------
299
+ PostsControllerTest: test_should_destroy_post
300
+ ---------------------------------------------
301
+ ------------------------------------------
302
+ PostsControllerTest: test_should_get_index
303
+ ------------------------------------------
304
+ --------------------------------------------
305
+ PostsControllerTest: test_should_create_post
306
+ --------------------------------------------
307
+ ----------------------------------------
308
+ PostsControllerTest: test_should_get_new
309
+ ----------------------------------------
310
+ -----------------------------------------
311
+ PostsControllerTest: test_should_get_edit
312
+ -----------------------------------------
313
+ -----------------------------------------
314
+ PostsControllerTest: test_should_get_edit
315
+ -----------------------------------------
316
+ ------------------------------------------
317
+ PostsControllerTest: test_should_show_post
318
+ ------------------------------------------
319
+ --------------------------------------------
320
+ PostsControllerTest: test_should_create_post
321
+ --------------------------------------------
322
+ --------------------------------------------
323
+ PostsControllerTest: test_should_update_post
324
+ --------------------------------------------
325
+ ---------------------------------------------
326
+ PostsControllerTest: test_should_destroy_post
327
+ ---------------------------------------------
328
+ ------------------------------------------
329
+ PostsControllerTest: test_should_get_index
330
+ ------------------------------------------
331
+ ----------------------------------------
332
+ PostsControllerTest: test_should_get_new
333
+ ----------------------------------------
334
+ ----------------------------------------
335
+ PostsControllerTest: test_should_get_new
336
+ ----------------------------------------
337
+ --------------------------------------------
338
+ PostsControllerTest: test_should_update_post
339
+ --------------------------------------------
340
+ ---------------------------------------------
341
+ PostsControllerTest: test_should_destroy_post
342
+ ---------------------------------------------
343
+ -----------------------------------------
344
+ PostsControllerTest: test_should_get_edit
345
+ -----------------------------------------
346
+ ------------------------------------------
347
+ PostsControllerTest: test_should_get_index
348
+ ------------------------------------------
349
+ ------------------------------------------
350
+ PostsControllerTest: test_should_show_post
351
+ ------------------------------------------
352
+ --------------------------------------------
353
+ PostsControllerTest: test_should_create_post
354
+ --------------------------------------------
355
+ -----------------------------------------
356
+ PostsControllerTest: test_should_get_edit
357
+ -----------------------------------------
358
+ ------------------------------------------
359
+ PostsControllerTest: test_should_get_index
360
+ ------------------------------------------
361
+ ----------------------------------------
362
+ PostsControllerTest: test_should_get_new
363
+ ----------------------------------------
364
+ ------------------------------------------
365
+ PostsControllerTest: test_should_show_post
366
+ ------------------------------------------
367
+ --------------------------------------------
368
+ PostsControllerTest: test_should_create_post
369
+ --------------------------------------------
370
+ ---------------------------------------------
371
+ PostsControllerTest: test_should_destroy_post
372
+ ---------------------------------------------
373
+ --------------------------------------------
374
+ PostsControllerTest: test_should_update_post
375
+ --------------------------------------------
376
+ --------------------------------------------
377
+ PostsControllerTest: test_should_create_post
378
+ --------------------------------------------
379
+ -----------------------------------------
380
+ PostsControllerTest: test_should_get_edit
381
+ -----------------------------------------
382
+ ------------------------------------------
383
+ PostsControllerTest: test_should_show_post
384
+ ------------------------------------------
385
+ ---------------------------------------------
386
+ PostsControllerTest: test_should_destroy_post
387
+ ---------------------------------------------
388
+ ------------------------------------------
389
+ PostsControllerTest: test_should_get_index
390
+ ------------------------------------------
391
+ ----------------------------------------
392
+ PostsControllerTest: test_should_get_new
393
+ ----------------------------------------
394
+ --------------------------------------------
395
+ PostsControllerTest: test_should_update_post
396
+ --------------------------------------------
397
+ -----------------------------------------
398
+ PostsControllerTest: test_should_get_edit
399
+ -----------------------------------------
400
+ ------------------------------------------
401
+ PostsControllerTest: test_should_get_index
402
+ ------------------------------------------
403
+ ----------------------------------------
404
+ PostsControllerTest: test_should_get_new
405
+ ----------------------------------------
406
+ ------------------------------------------
407
+ PostsControllerTest: test_should_show_post
408
+ ------------------------------------------
409
+ --------------------------------------------
410
+ PostsControllerTest: test_should_create_post
411
+ --------------------------------------------
412
+ --------------------------------------------
413
+ PostsControllerTest: test_should_update_post
414
+ --------------------------------------------
415
+ ---------------------------------------------
416
+ PostsControllerTest: test_should_destroy_post
417
+ ---------------------------------------------
418
+ -----------------------------------------
419
+ PostsControllerTest: test_should_get_edit
420
+ -----------------------------------------
421
+ --------------------------------------------
422
+ PostsControllerTest: test_should_update_post
423
+ --------------------------------------------
424
+ --------------------------------------------
425
+ PostsControllerTest: test_should_create_post
426
+ --------------------------------------------
427
+ ------------------------------------------
428
+ PostsControllerTest: test_should_get_index
429
+ ------------------------------------------
430
+ ------------------------------------------
431
+ PostsControllerTest: test_should_show_post
432
+ ------------------------------------------
433
+ ---------------------------------------------
434
+ PostsControllerTest: test_should_destroy_post
435
+ ---------------------------------------------
436
+ ----------------------------------------
437
+ PostsControllerTest: test_should_get_new
438
+ ----------------------------------------
439
+ ---------------------------------------------
440
+ PostsControllerTest: test_should_destroy_post
441
+ ---------------------------------------------
442
+ ------------------------------------------
443
+ PostsControllerTest: test_should_get_index
444
+ ------------------------------------------
445
+ ------------------------------------------
446
+ PostsControllerTest: test_should_show_post
447
+ ------------------------------------------
448
+ --------------------------------------------
449
+ PostsControllerTest: test_should_create_post
450
+ --------------------------------------------
451
+ -----------------------------------------
452
+ PostsControllerTest: test_should_get_edit
453
+ -----------------------------------------
454
+ --------------------------------------------
455
+ PostsControllerTest: test_should_update_post
456
+ --------------------------------------------
457
+ ----------------------------------------
458
+ PostsControllerTest: test_should_get_new
459
+ ----------------------------------------
460
+ ---------------------------------------------
461
+ PostsControllerTest: test_should_destroy_post
462
+ ---------------------------------------------
463
+ ------------------------------------------
464
+ PostsControllerTest: test_should_get_index
465
+ ------------------------------------------
466
+ ------------------------------------------
467
+ PostsControllerTest: test_should_show_post
468
+ ------------------------------------------
469
+ ----------------------------------------
470
+ PostsControllerTest: test_should_get_new
471
+ ----------------------------------------
472
+ --------------------------------------------
473
+ PostsControllerTest: test_should_create_post
474
+ --------------------------------------------
475
+ -----------------------------------------
476
+ PostsControllerTest: test_should_get_edit
477
+ -----------------------------------------
478
+ --------------------------------------------
479
+ PostsControllerTest: test_should_update_post
480
+ --------------------------------------------
481
+ --------------------------------------------
482
+ PostsControllerTest: test_should_create_post
483
+ --------------------------------------------
484
+ -----------------------------------------
485
+ PostsControllerTest: test_should_get_edit
486
+ -----------------------------------------
487
+ ------------------------------------------
488
+ PostsControllerTest: test_should_get_index
489
+ ------------------------------------------
490
+ ----------------------------------------
491
+ PostsControllerTest: test_should_get_new
492
+ ----------------------------------------
493
+ --------------------------------------------
494
+ PostsControllerTest: test_should_update_post
495
+ --------------------------------------------
496
+ ------------------------------------------
497
+ PostsControllerTest: test_should_show_post
498
+ ------------------------------------------
499
+ ---------------------------------------------
500
+ PostsControllerTest: test_should_destroy_post
501
+ ---------------------------------------------
502
+ --------------------------------------------
503
+ PostsControllerTest: test_should_create_post
504
+ --------------------------------------------
505
+ Started POST "/posts" for 127.0.0.1 at 2016-12-05 18:14:17 +0900
506
+ Processing by PostsController#create as HTML
507
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}}
508
+ Redirected to http://www.example.com/posts/97
509
+ Completed 302 Found in 11ms
510
+ ----------------------------------------
511
+ PostsControllerTest: test_should_get_new
512
+ ----------------------------------------
513
+ Started GET "/posts/new" for 127.0.0.1 at 2016-12-05 18:14:17 +0900
514
+ Processing by PostsController#new as HTML
515
+ Rendering posts/new.html.erb within layouts/application
516
+ Rendered posts/_form.html.erb (11.4ms)
517
+ Rendered posts/new.html.erb within layouts/application (12.9ms)
518
+ Completed 200 OK in 175ms (Views: 174.0ms)
519
+ ------------------------------------------
520
+ PostsControllerTest: test_should_show_post
521
+ ------------------------------------------
522
+ Started GET "/posts/99" for 127.0.0.1 at 2016-12-05 18:14:17 +0900
523
+ Processing by PostsController#show as HTML
524
+ Parameters: {"id"=>"99"}
525
+ Rendering posts/show.html.erb within layouts/application
526
+ Rendered posts/show.html.erb within layouts/application (0.6ms)
527
+ Completed 200 OK in 5ms (Views: 2.6ms)
528
+ --------------------------------------------
529
+ PostsControllerTest: test_should_update_post
530
+ --------------------------------------------
531
+ Started PATCH "/posts/100" for 127.0.0.1 at 2016-12-05 18:14:17 +0900
532
+ Processing by PostsController#update as HTML
533
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}, "id"=>"100"}
534
+ Redirected to http://www.example.com/posts/100
535
+ Completed 302 Found in 3ms
536
+ ------------------------------------------
537
+ PostsControllerTest: test_should_get_index
538
+ ------------------------------------------
539
+ Started GET "/posts" for 127.0.0.1 at 2016-12-05 18:14:17 +0900
540
+ Processing by PostsController#index as HTML
541
+ Rendering posts/index.html.erb within layouts/application
542
+ Rendered posts/index.html.erb within layouts/application (16.1ms)
543
+ Completed 200 OK in 22ms (Views: 18.8ms)
544
+ ---------------------------------------------
545
+ PostsControllerTest: test_should_destroy_post
546
+ ---------------------------------------------
547
+ Started DELETE "/posts/102" for 127.0.0.1 at 2016-12-05 18:14:17 +0900
548
+ Processing by PostsController#destroy as HTML
549
+ Parameters: {"id"=>"102"}
550
+ Completed 500 Internal Server Error in 3ms
551
+ -----------------------------------------
552
+ PostsControllerTest: test_should_get_edit
553
+ -----------------------------------------
554
+ Started GET "/posts/103/edit" for 127.0.0.1 at 2016-12-05 18:14:17 +0900
555
+ Processing by PostsController#edit as HTML
556
+ Parameters: {"id"=>"103"}
557
+ Rendering posts/edit.html.erb within layouts/application
558
+ Rendered posts/_form.html.erb (3.3ms)
559
+ Rendered posts/edit.html.erb within layouts/application (8.0ms)
560
+ Completed 200 OK in 22ms (Views: 17.6ms)
561
+ --------------------------------------------
562
+ PostsControllerTest: test_should_update_post
563
+ --------------------------------------------
564
+ Started PATCH "/posts/104" for 127.0.0.1 at 2016-12-05 18:15:05 +0900
565
+ Processing by PostsController#update as HTML
566
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}, "id"=>"104"}
567
+ Redirected to http://www.example.com/posts/104
568
+ Completed 302 Found in 11ms
569
+ --------------------------------------------
570
+ PostsControllerTest: test_should_create_post
571
+ --------------------------------------------
572
+ Started POST "/posts" for 127.0.0.1 at 2016-12-05 18:15:05 +0900
573
+ Processing by PostsController#create as HTML
574
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}}
575
+ Redirected to http://www.example.com/posts/106
576
+ Completed 302 Found in 2ms
577
+ ------------------------------------------
578
+ PostsControllerTest: test_should_get_index
579
+ ------------------------------------------
580
+ Started GET "/posts" for 127.0.0.1 at 2016-12-05 18:15:05 +0900
581
+ Processing by PostsController#index as HTML
582
+ Rendering posts/index.html.erb within layouts/application
583
+ Rendered posts/index.html.erb within layouts/application (13.8ms)
584
+ Completed 200 OK in 138ms (Views: 135.6ms)
585
+ ----------------------------------------
586
+ PostsControllerTest: test_should_get_new
587
+ ----------------------------------------
588
+ Started GET "/posts/new" for 127.0.0.1 at 2016-12-05 18:15:05 +0900
589
+ Processing by PostsController#new as HTML
590
+ Rendering posts/new.html.erb within layouts/application
591
+ Rendered posts/_form.html.erb (10.8ms)
592
+ Rendered posts/new.html.erb within layouts/application (11.6ms)
593
+ Completed 200 OK in 14ms (Views: 13.4ms)
594
+ -----------------------------------------
595
+ PostsControllerTest: test_should_get_edit
596
+ -----------------------------------------
597
+ Started GET "/posts/109/edit" for 127.0.0.1 at 2016-12-05 18:15:05 +0900
598
+ Processing by PostsController#edit as HTML
599
+ Parameters: {"id"=>"109"}
600
+ Rendering posts/edit.html.erb within layouts/application
601
+ Rendered posts/_form.html.erb (1.4ms)
602
+ Rendered posts/edit.html.erb within layouts/application (2.1ms)
603
+ Completed 200 OK in 6ms (Views: 3.9ms)
604
+ ---------------------------------------------
605
+ PostsControllerTest: test_should_destroy_post
606
+ ---------------------------------------------
607
+ Started DELETE "/posts/110" for 127.0.0.1 at 2016-12-05 18:15:05 +0900
608
+ Processing by PostsController#destroy as HTML
609
+ Parameters: {"id"=>"110"}
610
+ Completed 500 Internal Server Error in 3ms
611
+ ------------------------------------------
612
+ PostsControllerTest: test_should_show_post
613
+ ------------------------------------------
614
+ Started GET "/posts/111" for 127.0.0.1 at 2016-12-05 18:15:05 +0900
615
+ Processing by PostsController#show as HTML
616
+ Parameters: {"id"=>"111"}
617
+ Rendering posts/show.html.erb within layouts/application
618
+ Rendered posts/show.html.erb within layouts/application (0.5ms)
619
+ Completed 200 OK in 4ms (Views: 2.5ms)
620
+ --------------------------------------------
621
+ PostsControllerTest: test_should_create_post
622
+ --------------------------------------------
623
+ Started POST "/posts" for 127.0.0.1 at 2016-12-05 18:16:35 +0900
624
+ Processing by PostsController#create as HTML
625
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}}
626
+ Redirected to http://www.example.com/posts/113
627
+ Completed 302 Found in 11ms
628
+ ---------------------------------------------
629
+ PostsControllerTest: test_should_destroy_post
630
+ ---------------------------------------------
631
+ Started DELETE "/posts/114" for 127.0.0.1 at 2016-12-05 18:16:35 +0900
632
+ Processing by PostsController#destroy as HTML
633
+ Parameters: {"id"=>"114"}
634
+ Completed 500 Internal Server Error in 3ms
635
+ -----------------------------------------
636
+ PostsControllerTest: test_should_get_edit
637
+ -----------------------------------------
638
+ Started GET "/posts/115/edit" for 127.0.0.1 at 2016-12-05 18:16:35 +0900
639
+ Processing by PostsController#edit as HTML
640
+ Parameters: {"id"=>"115"}
641
+ Rendering posts/edit.html.erb within layouts/application
642
+ Rendered posts/_form.html.erb (14.0ms)
643
+ Rendered posts/edit.html.erb within layouts/application (15.5ms)
644
+ Completed 200 OK in 137ms (Views: 134.7ms)
645
+ --------------------------------------------
646
+ PostsControllerTest: test_should_update_post
647
+ --------------------------------------------
648
+ Started PATCH "/posts/116" for 127.0.0.1 at 2016-12-05 18:16:35 +0900
649
+ Processing by PostsController#update as HTML
650
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}, "id"=>"116"}
651
+ Redirected to http://www.example.com/posts/116
652
+ Completed 302 Found in 3ms
653
+ ------------------------------------------
654
+ PostsControllerTest: test_should_get_index
655
+ ------------------------------------------
656
+ Started GET "/posts" for 127.0.0.1 at 2016-12-05 18:16:35 +0900
657
+ Processing by PostsController#index as HTML
658
+ Rendering posts/index.html.erb within layouts/application
659
+ Rendered posts/index.html.erb within layouts/application (13.9ms)
660
+ Completed 200 OK in 19ms (Views: 15.9ms)
661
+ ----------------------------------------
662
+ PostsControllerTest: test_should_get_new
663
+ ----------------------------------------
664
+ Started GET "/posts/new" for 127.0.0.1 at 2016-12-05 18:16:35 +0900
665
+ Processing by PostsController#new as HTML
666
+ Rendering posts/new.html.erb within layouts/application
667
+ Rendered posts/_form.html.erb (1.4ms)
668
+ Rendered posts/new.html.erb within layouts/application (2.0ms)
669
+ Completed 200 OK in 4ms (Views: 3.6ms)
670
+ ------------------------------------------
671
+ PostsControllerTest: test_should_show_post
672
+ ------------------------------------------
673
+ Started GET "/posts/119" for 127.0.0.1 at 2016-12-05 18:16:35 +0900
674
+ Processing by PostsController#show as HTML
675
+ Parameters: {"id"=>"119"}
676
+ Rendering posts/show.html.erb within layouts/application
677
+ Rendered posts/show.html.erb within layouts/application (0.5ms)
678
+ Completed 200 OK in 6ms (Views: 2.2ms)
679
+ --------------------------------------------
680
+ PostsControllerTest: test_should_create_post
681
+ --------------------------------------------
682
+ Started POST "/posts" for 127.0.0.1 at 2016-12-05 18:21:48 +0900
683
+ Processing by PostsController#create as HTML
684
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}}
685
+ Redirected to http://www.example.com/posts/121
686
+ Completed 302 Found in 12ms
687
+ ------------------------------------------
688
+ PostsControllerTest: test_should_get_index
689
+ ------------------------------------------
690
+ Started GET "/posts" for 127.0.0.1 at 2016-12-05 18:21:48 +0900
691
+ Processing by PostsController#index as HTML
692
+ Rendering posts/index.html.erb within layouts/application
693
+ Rendered posts/index.html.erb within layouts/application (15.8ms)
694
+ Completed 200 OK in 130ms (Views: 124.2ms)
695
+ ------------------------------------------
696
+ PostsControllerTest: test_should_show_post
697
+ ------------------------------------------
698
+ Started GET "/posts/123" for 127.0.0.1 at 2016-12-05 18:21:48 +0900
699
+ Processing by PostsController#show as HTML
700
+ Parameters: {"id"=>"123"}
701
+ Rendering posts/show.html.erb within layouts/application
702
+ Rendered posts/show.html.erb within layouts/application (0.5ms)
703
+ Completed 200 OK in 5ms (Views: 2.2ms)
704
+ -----------------------------------------
705
+ PostsControllerTest: test_should_get_edit
706
+ -----------------------------------------
707
+ Started GET "/posts/124/edit" for 127.0.0.1 at 2016-12-05 18:21:48 +0900
708
+ Processing by PostsController#edit as HTML
709
+ Parameters: {"id"=>"124"}
710
+ Rendering posts/edit.html.erb within layouts/application
711
+ Rendered posts/_form.html.erb (11.2ms)
712
+ Rendered posts/edit.html.erb within layouts/application (12.0ms)
713
+ Completed 200 OK in 16ms (Views: 13.8ms)
714
+ ----------------------------------------
715
+ PostsControllerTest: test_should_get_new
716
+ ----------------------------------------
717
+ Started GET "/posts/new" for 127.0.0.1 at 2016-12-05 18:21:49 +0900
718
+ Processing by PostsController#new as HTML
719
+ Rendering posts/new.html.erb within layouts/application
720
+ Rendered posts/_form.html.erb (1.5ms)
721
+ Rendered posts/new.html.erb within layouts/application (2.3ms)
722
+ Completed 200 OK in 5ms (Views: 4.4ms)
723
+ ---------------------------------------------
724
+ PostsControllerTest: test_should_destroy_post
725
+ ---------------------------------------------
726
+ Started DELETE "/posts/126" for 127.0.0.1 at 2016-12-05 18:21:49 +0900
727
+ Processing by PostsController#destroy as HTML
728
+ Parameters: {"id"=>"126"}
729
+ Redirected to http://www.example.com/posts
730
+ Completed 302 Found in 3ms
731
+ --------------------------------------------
732
+ PostsControllerTest: test_should_update_post
733
+ --------------------------------------------
734
+ Started PATCH "/posts/127" for 127.0.0.1 at 2016-12-05 18:21:49 +0900
735
+ Processing by PostsController#update as HTML
736
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}, "id"=>"127"}
737
+ Redirected to http://www.example.com/posts/127
738
+ Completed 302 Found in 3ms
739
+ ---------------------------------------------
740
+ PostsControllerTest: test_should_destroy_post
741
+ ---------------------------------------------
742
+ Started DELETE "/posts/128" for 127.0.0.1 at 2016-12-05 18:22:23 +0900
743
+ Processing by PostsController#destroy as HTML
744
+ Parameters: {"id"=>"128"}
745
+ Redirected to http://www.example.com/posts
746
+ Completed 302 Found in 12ms
747
+ --------------------------------------------
748
+ PostsControllerTest: test_should_update_post
749
+ --------------------------------------------
750
+ Started PATCH "/posts/129" for 127.0.0.1 at 2016-12-05 18:22:23 +0900
751
+ Processing by PostsController#update as HTML
752
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}, "id"=>"129"}
753
+ Redirected to http://www.example.com/posts/129
754
+ Completed 302 Found in 3ms
755
+ ----------------------------------------
756
+ PostsControllerTest: test_should_get_new
757
+ ----------------------------------------
758
+ Started GET "/posts/new" for 127.0.0.1 at 2016-12-05 18:22:23 +0900
759
+ Processing by PostsController#new as HTML
760
+ Rendering posts/new.html.erb within layouts/application
761
+ Rendered posts/_form.html.erb (10.3ms)
762
+ Rendered posts/new.html.erb within layouts/application (11.6ms)
763
+ Completed 200 OK in 138ms (Views: 137.6ms)
764
+ ------------------------------------------
765
+ PostsControllerTest: test_should_get_index
766
+ ------------------------------------------
767
+ Started GET "/posts" for 127.0.0.1 at 2016-12-05 18:22:24 +0900
768
+ Processing by PostsController#index as HTML
769
+ Rendering posts/index.html.erb within layouts/application
770
+ Rendered posts/index.html.erb within layouts/application (14.9ms)
771
+ Completed 200 OK in 20ms (Views: 16.8ms)
772
+ ------------------------------------------
773
+ PostsControllerTest: test_should_show_post
774
+ ------------------------------------------
775
+ Started GET "/posts/132" for 127.0.0.1 at 2016-12-05 18:22:24 +0900
776
+ Processing by PostsController#show as HTML
777
+ Parameters: {"id"=>"132"}
778
+ Rendering posts/show.html.erb within layouts/application
779
+ Rendered posts/show.html.erb within layouts/application (0.5ms)
780
+ Completed 200 OK in 4ms (Views: 2.2ms)
781
+ --------------------------------------------
782
+ PostsControllerTest: test_should_create_post
783
+ --------------------------------------------
784
+ Started POST "/posts" for 127.0.0.1 at 2016-12-05 18:22:24 +0900
785
+ Processing by PostsController#create as HTML
786
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}}
787
+ Redirected to http://www.example.com/posts/134
788
+ Completed 302 Found in 3ms
789
+ -----------------------------------------
790
+ PostsControllerTest: test_should_get_edit
791
+ -----------------------------------------
792
+ Started GET "/posts/135/edit" for 127.0.0.1 at 2016-12-05 18:22:24 +0900
793
+ Processing by PostsController#edit as HTML
794
+ Parameters: {"id"=>"135"}
795
+ Rendering posts/edit.html.erb within layouts/application
796
+ Rendered posts/_form.html.erb (1.5ms)
797
+ Rendered posts/edit.html.erb within layouts/application (2.3ms)
798
+ Completed 200 OK in 6ms (Views: 4.2ms)
799
+ ------------------------------------------
800
+ PostsControllerTest: test_should_get_index
801
+ ------------------------------------------
802
+ ---------------------------------------------
803
+ PostsControllerTest: test_should_destroy_post
804
+ ---------------------------------------------
805
+ -----------------------------------------
806
+ PostsControllerTest: test_should_get_edit
807
+ -----------------------------------------
808
+ ------------------------------------------
809
+ PostsControllerTest: test_should_show_post
810
+ ------------------------------------------
811
+ --------------------------------------------
812
+ PostsControllerTest: test_should_create_post
813
+ --------------------------------------------
814
+ ----------------------------------------
815
+ PostsControllerTest: test_should_get_new
816
+ ----------------------------------------
817
+ --------------------------------------------
818
+ PostsControllerTest: test_should_update_post
819
+ --------------------------------------------
820
+ ---------------------------------------------
821
+ PostsControllerTest: test_should_destroy_post
822
+ ---------------------------------------------
823
+ ----------------------------------------
824
+ PostsControllerTest: test_should_get_new
825
+ ----------------------------------------
826
+ --------------------------------------------
827
+ PostsControllerTest: test_should_update_post
828
+ --------------------------------------------
829
+ -----------------------------------------
830
+ PostsControllerTest: test_should_get_edit
831
+ -----------------------------------------
832
+ --------------------------------------------
833
+ PostsControllerTest: test_should_create_post
834
+ --------------------------------------------
835
+ ------------------------------------------
836
+ PostsControllerTest: test_should_get_index
837
+ ------------------------------------------
838
+ ------------------------------------------
839
+ PostsControllerTest: test_should_show_post
840
+ ------------------------------------------
841
+ -----------------------------------------
842
+ PostsControllerTest: test_should_get_edit
843
+ -----------------------------------------
844
+ ------------------------------------------
845
+ PostsControllerTest: test_should_get_index
846
+ ------------------------------------------
847
+ ----------------------------------------
848
+ PostsControllerTest: test_should_get_new
849
+ ----------------------------------------
850
+ ------------------------------------------
851
+ PostsControllerTest: test_should_show_post
852
+ ------------------------------------------
853
+ --------------------------------------------
854
+ PostsControllerTest: test_should_update_post
855
+ --------------------------------------------
856
+ --------------------------------------------
857
+ PostsControllerTest: test_should_create_post
858
+ --------------------------------------------
859
+ ---------------------------------------------
860
+ PostsControllerTest: test_should_destroy_post
861
+ ---------------------------------------------
862
+ ---------------------------------------------
863
+ PostsControllerTest: test_should_destroy_post
864
+ ---------------------------------------------
865
+ ------------------------------------------
866
+ PostsControllerTest: test_should_show_post
867
+ ------------------------------------------
868
+ --------------------------------------------
869
+ PostsControllerTest: test_should_update_post
870
+ --------------------------------------------
871
+ ----------------------------------------
872
+ PostsControllerTest: test_should_get_new
873
+ ----------------------------------------
874
+ --------------------------------------------
875
+ PostsControllerTest: test_should_create_post
876
+ --------------------------------------------
877
+ -----------------------------------------
878
+ PostsControllerTest: test_should_get_edit
879
+ -----------------------------------------
880
+ ------------------------------------------
881
+ PostsControllerTest: test_should_get_index
882
+ ------------------------------------------
883
+ --------------------------------------------
884
+ PostsControllerTest: test_should_update_post
885
+ --------------------------------------------
886
+ ------------------------------------------
887
+ PostsControllerTest: test_should_get_index
888
+ ------------------------------------------
889
+ ----------------------------------------
890
+ PostsControllerTest: test_should_get_new
891
+ ----------------------------------------
892
+ ---------------------------------------------
893
+ PostsControllerTest: test_should_destroy_post
894
+ ---------------------------------------------
895
+ -----------------------------------------
896
+ PostsControllerTest: test_should_get_edit
897
+ -----------------------------------------
898
+ --------------------------------------------
899
+ PostsControllerTest: test_should_create_post
900
+ --------------------------------------------
901
+ ------------------------------------------
902
+ PostsControllerTest: test_should_show_post
903
+ ------------------------------------------
904
+ ---------------------------------------------
905
+ PostsControllerTest: test_should_destroy_post
906
+ ---------------------------------------------
907
+ ----------------------------------------
908
+ PostsControllerTest: test_should_get_new
909
+ ----------------------------------------
910
+ -----------------------------------------
911
+ PostsControllerTest: test_should_get_edit
912
+ -----------------------------------------
913
+ ------------------------------------------
914
+ PostsControllerTest: test_should_show_post
915
+ ------------------------------------------
916
+ --------------------------------------------
917
+ PostsControllerTest: test_should_update_post
918
+ --------------------------------------------
919
+ ------------------------------------------
920
+ PostsControllerTest: test_should_get_index
921
+ ------------------------------------------
922
+ --------------------------------------------
923
+ PostsControllerTest: test_should_create_post
924
+ --------------------------------------------
925
+ ---------------------------------------------
926
+ PostsControllerTest: test_should_destroy_post
927
+ ---------------------------------------------
928
+ -----------------------------------------
929
+ PostsControllerTest: test_should_get_edit
930
+ -----------------------------------------
931
+ --------------------------------------------
932
+ PostsControllerTest: test_should_create_post
933
+ --------------------------------------------
934
+ --------------------------------------------
935
+ PostsControllerTest: test_should_update_post
936
+ --------------------------------------------
937
+ ------------------------------------------
938
+ PostsControllerTest: test_should_show_post
939
+ ------------------------------------------
940
+ ----------------------------------------
941
+ PostsControllerTest: test_should_get_new
942
+ ----------------------------------------
943
+ ------------------------------------------
944
+ PostsControllerTest: test_should_get_index
945
+ ------------------------------------------
946
+ --------------------------------------------
947
+ PostsControllerTest: test_should_create_post
948
+ --------------------------------------------
949
+ ------------------------------------------
950
+ PostsControllerTest: test_should_show_post
951
+ ------------------------------------------
952
+ ------------------------------------------
953
+ PostsControllerTest: test_should_get_index
954
+ ------------------------------------------
955
+ ---------------------------------------------
956
+ PostsControllerTest: test_should_destroy_post
957
+ ---------------------------------------------
958
+ ----------------------------------------
959
+ PostsControllerTest: test_should_get_new
960
+ ----------------------------------------
961
+ -----------------------------------------
962
+ PostsControllerTest: test_should_get_edit
963
+ -----------------------------------------
964
+ --------------------------------------------
965
+ PostsControllerTest: test_should_update_post
966
+ --------------------------------------------
967
+ ------------------------------------------
968
+ PostsControllerTest: test_should_get_index
969
+ ------------------------------------------
970
+ ------------------------------------------
971
+ PostsControllerTest: test_should_show_post
972
+ ------------------------------------------
973
+ --------------------------------------------
974
+ PostsControllerTest: test_should_update_post
975
+ --------------------------------------------
976
+ -----------------------------------------
977
+ PostsControllerTest: test_should_get_edit
978
+ -----------------------------------------
979
+ --------------------------------------------
980
+ PostsControllerTest: test_should_create_post
981
+ --------------------------------------------
982
+ ---------------------------------------------
983
+ PostsControllerTest: test_should_destroy_post
984
+ ---------------------------------------------
985
+ ----------------------------------------
986
+ PostsControllerTest: test_should_get_new
987
+ ----------------------------------------
988
+ --------------------------------------------
989
+ PostsControllerTest: test_should_update_post
990
+ --------------------------------------------
991
+ ---------------------------------------------
992
+ PostsControllerTest: test_should_destroy_post
993
+ ---------------------------------------------
994
+ -----------------------------------------
995
+ PostsControllerTest: test_should_get_edit
996
+ -----------------------------------------
997
+ ------------------------------------------
998
+ PostsControllerTest: test_should_get_index
999
+ ------------------------------------------
1000
+ --------------------------------------------
1001
+ PostsControllerTest: test_should_create_post
1002
+ --------------------------------------------
1003
+ ----------------------------------------
1004
+ PostsControllerTest: test_should_get_new
1005
+ ----------------------------------------
1006
+ ------------------------------------------
1007
+ PostsControllerTest: test_should_show_post
1008
+ ------------------------------------------
1009
+ ----------------------------------------
1010
+ PostsControllerTest: test_should_get_new
1011
+ ----------------------------------------
1012
+ --------------------------------------------
1013
+ PostsControllerTest: test_should_create_post
1014
+ --------------------------------------------
1015
+ ---------------------------------------------
1016
+ PostsControllerTest: test_should_destroy_post
1017
+ ---------------------------------------------
1018
+ ------------------------------------------
1019
+ PostsControllerTest: test_should_get_index
1020
+ ------------------------------------------
1021
+ --------------------------------------------
1022
+ PostsControllerTest: test_should_update_post
1023
+ --------------------------------------------
1024
+ ------------------------------------------
1025
+ PostsControllerTest: test_should_show_post
1026
+ ------------------------------------------
1027
+ -----------------------------------------
1028
+ PostsControllerTest: test_should_get_edit
1029
+ -----------------------------------------
1030
+ ------------------------------------------
1031
+ PostsControllerTest: test_should_show_post
1032
+ ------------------------------------------
1033
+ ---------------------------------------------
1034
+ PostsControllerTest: test_should_destroy_post
1035
+ ---------------------------------------------
1036
+ ----------------------------------------
1037
+ PostsControllerTest: test_should_get_new
1038
+ ----------------------------------------
1039
+ --------------------------------------------
1040
+ PostsControllerTest: test_should_update_post
1041
+ --------------------------------------------
1042
+ ------------------------------------------
1043
+ PostsControllerTest: test_should_get_index
1044
+ ------------------------------------------
1045
+ --------------------------------------------
1046
+ PostsControllerTest: test_should_create_post
1047
+ --------------------------------------------
1048
+ -----------------------------------------
1049
+ PostsControllerTest: test_should_get_edit
1050
+ -----------------------------------------
1051
+ --------------------------------------------
1052
+ PostsControllerTest: test_should_create_post
1053
+ --------------------------------------------
1054
+ ----------------------------------------
1055
+ PostsControllerTest: test_should_get_new
1056
+ ----------------------------------------
1057
+ --------------------------------------------
1058
+ PostsControllerTest: test_should_update_post
1059
+ --------------------------------------------
1060
+ ---------------------------------------------
1061
+ PostsControllerTest: test_should_destroy_post
1062
+ ---------------------------------------------
1063
+ -----------------------------------------
1064
+ PostsControllerTest: test_should_get_edit
1065
+ -----------------------------------------
1066
+ ------------------------------------------
1067
+ PostsControllerTest: test_should_show_post
1068
+ ------------------------------------------
1069
+ ------------------------------------------
1070
+ PostsControllerTest: test_should_get_index
1071
+ ------------------------------------------
1072
+ ---------------------------------------------
1073
+ PostsControllerTest: test_should_destroy_post
1074
+ ---------------------------------------------
1075
+ --------------------------------------------
1076
+ PostsControllerTest: test_should_create_post
1077
+ --------------------------------------------
1078
+ ------------------------------------------
1079
+ PostsControllerTest: test_should_show_post
1080
+ ------------------------------------------
1081
+ --------------------------------------------
1082
+ PostsControllerTest: test_should_update_post
1083
+ --------------------------------------------
1084
+ ------------------------------------------
1085
+ PostsControllerTest: test_should_get_index
1086
+ ------------------------------------------
1087
+ ----------------------------------------
1088
+ PostsControllerTest: test_should_get_new
1089
+ ----------------------------------------
1090
+ -----------------------------------------
1091
+ PostsControllerTest: test_should_get_edit
1092
+ -----------------------------------------
1093
+ ----------------------------------------
1094
+ PostsControllerTest: test_should_get_new
1095
+ ----------------------------------------
1096
+ --------------------------------------------
1097
+ PostsControllerTest: test_should_create_post
1098
+ --------------------------------------------
1099
+ --------------------------------------------
1100
+ PostsControllerTest: test_should_update_post
1101
+ --------------------------------------------
1102
+ -----------------------------------------
1103
+ PostsControllerTest: test_should_get_edit
1104
+ -----------------------------------------
1105
+ ------------------------------------------
1106
+ PostsControllerTest: test_should_get_index
1107
+ ------------------------------------------
1108
+ ------------------------------------------
1109
+ PostsControllerTest: test_should_show_post
1110
+ ------------------------------------------
1111
+ ---------------------------------------------
1112
+ PostsControllerTest: test_should_destroy_post
1113
+ ---------------------------------------------
1114
+ ---------------------------------------------
1115
+ PostsControllerTest: test_should_destroy_post
1116
+ ---------------------------------------------
1117
+ --------------------------------------------
1118
+ PostsControllerTest: test_should_create_post
1119
+ --------------------------------------------
1120
+ ------------------------------------------
1121
+ PostsControllerTest: test_should_get_index
1122
+ ------------------------------------------
1123
+ ------------------------------------------
1124
+ PostsControllerTest: test_should_show_post
1125
+ ------------------------------------------
1126
+ --------------------------------------------
1127
+ PostsControllerTest: test_should_update_post
1128
+ --------------------------------------------
1129
+ -----------------------------------------
1130
+ PostsControllerTest: test_should_get_edit
1131
+ -----------------------------------------
1132
+ ----------------------------------------
1133
+ PostsControllerTest: test_should_get_new
1134
+ ----------------------------------------
1135
+ ----------------------------------------
1136
+ PostsControllerTest: test_should_get_new
1137
+ ----------------------------------------
1138
+ ------------------------------------------
1139
+ PostsControllerTest: test_should_show_post
1140
+ ------------------------------------------
1141
+ --------------------------------------------
1142
+ PostsControllerTest: test_should_update_post
1143
+ --------------------------------------------
1144
+ -----------------------------------------
1145
+ PostsControllerTest: test_should_get_edit
1146
+ -----------------------------------------
1147
+ --------------------------------------------
1148
+ PostsControllerTest: test_should_create_post
1149
+ --------------------------------------------
1150
+ ------------------------------------------
1151
+ PostsControllerTest: test_should_get_index
1152
+ ------------------------------------------
1153
+ ---------------------------------------------
1154
+ PostsControllerTest: test_should_destroy_post
1155
+ ---------------------------------------------
1156
+ --------------------------------------------
1157
+ PostsControllerTest: test_should_create_post
1158
+ --------------------------------------------
1159
+ ------------------------------------------
1160
+ PostsControllerTest: test_should_get_index
1161
+ ------------------------------------------
1162
+ ----------------------------------------
1163
+ PostsControllerTest: test_should_get_new
1164
+ ----------------------------------------
1165
+ --------------------------------------------
1166
+ PostsControllerTest: test_should_update_post
1167
+ --------------------------------------------
1168
+ ---------------------------------------------
1169
+ PostsControllerTest: test_should_destroy_post
1170
+ ---------------------------------------------
1171
+ -----------------------------------------
1172
+ PostsControllerTest: test_should_get_edit
1173
+ -----------------------------------------
1174
+ ------------------------------------------
1175
+ PostsControllerTest: test_should_show_post
1176
+ ------------------------------------------
1177
+ ---------------------------------------------
1178
+ PostsControllerTest: test_should_destroy_post
1179
+ ---------------------------------------------
1180
+ --------------------------------------------
1181
+ PostsControllerTest: test_should_update_post
1182
+ --------------------------------------------
1183
+ ------------------------------------------
1184
+ PostsControllerTest: test_should_show_post
1185
+ ------------------------------------------
1186
+ ----------------------------------------
1187
+ PostsControllerTest: test_should_get_new
1188
+ ----------------------------------------
1189
+ --------------------------------------------
1190
+ PostsControllerTest: test_should_create_post
1191
+ --------------------------------------------
1192
+ ------------------------------------------
1193
+ PostsControllerTest: test_should_get_index
1194
+ ------------------------------------------
1195
+ -----------------------------------------
1196
+ PostsControllerTest: test_should_get_edit
1197
+ -----------------------------------------
1198
+ ----------------------------------------
1199
+ PostsControllerTest: test_should_get_new
1200
+ ----------------------------------------
1201
+ --------------------------------------------
1202
+ PostsControllerTest: test_should_create_post
1203
+ --------------------------------------------
1204
+ ---------------------------------------------
1205
+ PostsControllerTest: test_should_destroy_post
1206
+ ---------------------------------------------
1207
+ --------------------------------------------
1208
+ PostsControllerTest: test_should_update_post
1209
+ --------------------------------------------
1210
+ -----------------------------------------
1211
+ PostsControllerTest: test_should_get_edit
1212
+ -----------------------------------------
1213
+ ------------------------------------------
1214
+ PostsControllerTest: test_should_get_index
1215
+ ------------------------------------------
1216
+ ------------------------------------------
1217
+ PostsControllerTest: test_should_show_post
1218
+ ------------------------------------------
1219
+ --------------------------------------------
1220
+ PostsControllerTest: test_should_create_post
1221
+ --------------------------------------------
1222
+ ---------------------------------------------
1223
+ PostsControllerTest: test_should_destroy_post
1224
+ ---------------------------------------------
1225
+ ------------------------------------------
1226
+ PostsControllerTest: test_should_get_index
1227
+ ------------------------------------------
1228
+ --------------------------------------------
1229
+ PostsControllerTest: test_should_update_post
1230
+ --------------------------------------------
1231
+ ----------------------------------------
1232
+ PostsControllerTest: test_should_get_new
1233
+ ----------------------------------------
1234
+ ------------------------------------------
1235
+ PostsControllerTest: test_should_show_post
1236
+ ------------------------------------------
1237
+ -----------------------------------------
1238
+ PostsControllerTest: test_should_get_edit
1239
+ -----------------------------------------
1240
+ ------------------------------------------
1241
+ PostsControllerTest: test_should_show_post
1242
+ ------------------------------------------
1243
+ --------------------------------------------
1244
+ PostsControllerTest: test_should_create_post
1245
+ --------------------------------------------
1246
+ -----------------------------------------
1247
+ PostsControllerTest: test_should_get_edit
1248
+ -----------------------------------------
1249
+ ------------------------------------------
1250
+ PostsControllerTest: test_should_get_index
1251
+ ------------------------------------------
1252
+ ----------------------------------------
1253
+ PostsControllerTest: test_should_get_new
1254
+ ----------------------------------------
1255
+ ---------------------------------------------
1256
+ PostsControllerTest: test_should_destroy_post
1257
+ ---------------------------------------------
1258
+ --------------------------------------------
1259
+ PostsControllerTest: test_should_update_post
1260
+ --------------------------------------------
1261
+ --------------------------------------------
1262
+ PostsControllerTest: test_should_update_post
1263
+ --------------------------------------------
1264
+ -----------------------------------------
1265
+ PostsControllerTest: test_should_get_edit
1266
+ -----------------------------------------
1267
+ ----------------------------------------
1268
+ PostsControllerTest: test_should_get_new
1269
+ ----------------------------------------
1270
+ ------------------------------------------
1271
+ PostsControllerTest: test_should_get_index
1272
+ ------------------------------------------
1273
+ --------------------------------------------
1274
+ PostsControllerTest: test_should_create_post
1275
+ --------------------------------------------
1276
+ ---------------------------------------------
1277
+ PostsControllerTest: test_should_destroy_post
1278
+ ---------------------------------------------
1279
+ ------------------------------------------
1280
+ PostsControllerTest: test_should_show_post
1281
+ ------------------------------------------
1282
+ -----------------------------------------
1283
+ PostsControllerTest: test_should_get_edit
1284
+ -----------------------------------------
1285
+ ------------------------------------------
1286
+ PostsControllerTest: test_should_show_post
1287
+ ------------------------------------------
1288
+ ------------------------------------------
1289
+ PostsControllerTest: test_should_get_index
1290
+ ------------------------------------------
1291
+ ----------------------------------------
1292
+ PostsControllerTest: test_should_get_new
1293
+ ----------------------------------------
1294
+ ---------------------------------------------
1295
+ PostsControllerTest: test_should_destroy_post
1296
+ ---------------------------------------------
1297
+ --------------------------------------------
1298
+ PostsControllerTest: test_should_create_post
1299
+ --------------------------------------------
1300
+ --------------------------------------------
1301
+ PostsControllerTest: test_should_update_post
1302
+ --------------------------------------------
1303
+ --------------------------------------------
1304
+ PostsControllerTest: test_should_update_post
1305
+ --------------------------------------------
1306
+ --------------------------------------------
1307
+ PostsControllerTest: test_should_create_post
1308
+ --------------------------------------------
1309
+ -----------------------------------------
1310
+ PostsControllerTest: test_should_get_edit
1311
+ -----------------------------------------
1312
+ ------------------------------------------
1313
+ PostsControllerTest: test_should_get_index
1314
+ ------------------------------------------
1315
+ ------------------------------------------
1316
+ PostsControllerTest: test_should_show_post
1317
+ ------------------------------------------
1318
+ ---------------------------------------------
1319
+ PostsControllerTest: test_should_destroy_post
1320
+ ---------------------------------------------
1321
+ ----------------------------------------
1322
+ PostsControllerTest: test_should_get_new
1323
+ ----------------------------------------
1324
+ -----------------------------------------
1325
+ PostsControllerTest: test_should_get_edit
1326
+ -----------------------------------------
1327
+ Started GET "/posts/1/edit" for 127.0.0.1 at 2016-12-12 12:18:34 +0900
1328
+ Processing by PostsController#edit as HTML
1329
+ Parameters: {"id"=>"1"}
1330
+ Rendering posts/edit.html.erb within layouts/application
1331
+ Rendered posts/_form.html.erb (21.8ms)
1332
+ Rendered posts/edit.html.erb within layouts/application (23.7ms)
1333
+ Completed 200 OK in 291ms (Views: 241.2ms)
1334
+ --------------------------------------------
1335
+ PostsControllerTest: test_should_create_post
1336
+ --------------------------------------------
1337
+ Started POST "/posts" for 127.0.0.1 at 2016-12-12 12:18:34 +0900
1338
+ Processing by PostsController#create as HTML
1339
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}}
1340
+ Redirected to http://www.example.com/posts/3
1341
+ Completed 302 Found in 2ms
1342
+ ------------------------------------------
1343
+ PostsControllerTest: test_should_get_index
1344
+ ------------------------------------------
1345
+ Started GET "/posts" for 127.0.0.1 at 2016-12-12 12:18:34 +0900
1346
+ Processing by PostsController#index as HTML
1347
+ Rendering posts/index.html.erb within layouts/application
1348
+ Rendered posts/index.html.erb within layouts/application (2.7ms)
1349
+ Completed 200 OK in 6ms (Views: 4.7ms)
1350
+ ----------------------------------------
1351
+ PostsControllerTest: test_should_get_new
1352
+ ----------------------------------------
1353
+ Started GET "/posts/new" for 127.0.0.1 at 2016-12-12 12:18:34 +0900
1354
+ Processing by PostsController#new as HTML
1355
+ Rendering posts/new.html.erb within layouts/application
1356
+ Rendered posts/_form.html.erb (1.6ms)
1357
+ Rendered posts/new.html.erb within layouts/application (2.4ms)
1358
+ Completed 200 OK in 5ms (Views: 4.4ms)
1359
+ ---------------------------------------------
1360
+ PostsControllerTest: test_should_destroy_post
1361
+ ---------------------------------------------
1362
+ Started DELETE "/posts/6" for 127.0.0.1 at 2016-12-12 12:18:34 +0900
1363
+ Processing by PostsController#destroy as HTML
1364
+ Parameters: {"id"=>"6"}
1365
+ Redirected to http://www.example.com/posts
1366
+ Completed 302 Found in 3ms
1367
+ --------------------------------------------
1368
+ PostsControllerTest: test_should_update_post
1369
+ --------------------------------------------
1370
+ Started PATCH "/posts/7" for 127.0.0.1 at 2016-12-12 12:18:34 +0900
1371
+ Processing by PostsController#update as HTML
1372
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}, "id"=>"7"}
1373
+ Redirected to http://www.example.com/posts/7
1374
+ Completed 302 Found in 4ms
1375
+ ------------------------------------------
1376
+ PostsControllerTest: test_should_show_post
1377
+ ------------------------------------------
1378
+ Started GET "/posts/8" for 127.0.0.1 at 2016-12-12 12:18:34 +0900
1379
+ Processing by PostsController#show as HTML
1380
+ Parameters: {"id"=>"8"}
1381
+ Rendering posts/show.html.erb within layouts/application
1382
+ Rendered posts/show.html.erb within layouts/application (1.0ms)
1383
+ Completed 200 OK in 11ms (Views: 4.8ms)
1384
+ ------------------------------------------
1385
+ PostsControllerTest: test_should_show_post
1386
+ ------------------------------------------
1387
+ Started GET "/posts/9" for 127.0.0.1 at 2016-12-12 12:18:41 +0900
1388
+ Processing by PostsController#show as HTML
1389
+ Parameters: {"id"=>"9"}
1390
+ Rendering posts/show.html.erb within layouts/application
1391
+ Rendered posts/show.html.erb within layouts/application (3.0ms)
1392
+ Completed 200 OK in 125ms (Views: 116.4ms)
1393
+ --------------------------------------------
1394
+ PostsControllerTest: test_should_create_post
1395
+ --------------------------------------------
1396
+ Started POST "/posts" for 127.0.0.1 at 2016-12-12 12:18:41 +0900
1397
+ Processing by PostsController#create as HTML
1398
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}}
1399
+ Redirected to http://www.example.com/posts/11
1400
+ Completed 302 Found in 3ms
1401
+ ---------------------------------------------
1402
+ PostsControllerTest: test_should_destroy_post
1403
+ ---------------------------------------------
1404
+ Started DELETE "/posts/12" for 127.0.0.1 at 2016-12-12 12:18:41 +0900
1405
+ Processing by PostsController#destroy as HTML
1406
+ Parameters: {"id"=>"12"}
1407
+ Redirected to http://www.example.com/posts
1408
+ Completed 302 Found in 3ms
1409
+ --------------------------------------------
1410
+ PostsControllerTest: test_should_update_post
1411
+ --------------------------------------------
1412
+ Started PATCH "/posts/13" for 127.0.0.1 at 2016-12-12 12:18:41 +0900
1413
+ Processing by PostsController#update as HTML
1414
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}, "id"=>"13"}
1415
+ Redirected to http://www.example.com/posts/13
1416
+ Completed 302 Found in 3ms
1417
+ ------------------------------------------
1418
+ PostsControllerTest: test_should_get_index
1419
+ ------------------------------------------
1420
+ Started GET "/posts" for 127.0.0.1 at 2016-12-12 12:18:41 +0900
1421
+ Processing by PostsController#index as HTML
1422
+ Rendering posts/index.html.erb within layouts/application
1423
+ Rendered posts/index.html.erb within layouts/application (4.0ms)
1424
+ Completed 200 OK in 7ms (Views: 6.4ms)
1425
+ ----------------------------------------
1426
+ PostsControllerTest: test_should_get_new
1427
+ ----------------------------------------
1428
+ Started GET "/posts/new" for 127.0.0.1 at 2016-12-12 12:18:41 +0900
1429
+ Processing by PostsController#new as HTML
1430
+ Rendering posts/new.html.erb within layouts/application
1431
+ Rendered posts/_form.html.erb (11.6ms)
1432
+ Rendered posts/new.html.erb within layouts/application (12.4ms)
1433
+ Completed 200 OK in 15ms (Views: 14.2ms)
1434
+ -----------------------------------------
1435
+ PostsControllerTest: test_should_get_edit
1436
+ -----------------------------------------
1437
+ Started GET "/posts/16/edit" for 127.0.0.1 at 2016-12-12 12:18:41 +0900
1438
+ Processing by PostsController#edit as HTML
1439
+ Parameters: {"id"=>"16"}
1440
+ Rendering posts/edit.html.erb within layouts/application
1441
+ Rendered posts/_form.html.erb (1.5ms)
1442
+ Rendered posts/edit.html.erb within layouts/application (2.6ms)
1443
+ Completed 200 OK in 7ms (Views: 4.9ms)
1444
+ ------------------------------------------
1445
+ PostsControllerTest: test_should_show_post
1446
+ ------------------------------------------
1447
+ Started GET "/posts/17" for 127.0.0.1 at 2016-12-12 12:20:23 +0900
1448
+ Processing by PostsController#show as HTML
1449
+ Parameters: {"id"=>"17"}
1450
+ Rendering posts/show.html.erb within layouts/application
1451
+ Rendered posts/show.html.erb within layouts/application (3.2ms)
1452
+ Completed 200 OK in 201ms (Views: 190.2ms)
1453
+ ------------------------------------------
1454
+ PostsControllerTest: test_should_get_index
1455
+ ------------------------------------------
1456
+ Started GET "/posts" for 127.0.0.1 at 2016-12-12 12:20:23 +0900
1457
+ Processing by PostsController#index as HTML
1458
+ Rendering posts/index.html.erb within layouts/application
1459
+ Rendered posts/index.html.erb within layouts/application (5.3ms)
1460
+ Completed 200 OK in 9ms (Views: 8.1ms)
1461
+ ----------------------------------------
1462
+ PostsControllerTest: test_should_get_new
1463
+ ----------------------------------------
1464
+ Started GET "/posts/new" for 127.0.0.1 at 2016-12-12 12:20:23 +0900
1465
+ Processing by PostsController#new as HTML
1466
+ Rendering posts/new.html.erb within layouts/application
1467
+ Rendered posts/_form.html.erb (17.2ms)
1468
+ Rendered posts/new.html.erb within layouts/application (18.1ms)
1469
+ Completed 200 OK in 21ms (Views: 20.3ms)
1470
+ --------------------------------------------
1471
+ PostsControllerTest: test_should_create_post
1472
+ --------------------------------------------
1473
+ Started POST "/posts" for 127.0.0.1 at 2016-12-12 12:20:23 +0900
1474
+ Processing by PostsController#create as HTML
1475
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}}
1476
+ Redirected to http://www.example.com/posts/21
1477
+ Completed 302 Found in 2ms
1478
+ -----------------------------------------
1479
+ PostsControllerTest: test_should_get_edit
1480
+ -----------------------------------------
1481
+ Started GET "/posts/22/edit" for 127.0.0.1 at 2016-12-12 12:20:23 +0900
1482
+ Processing by PostsController#edit as HTML
1483
+ Parameters: {"id"=>"22"}
1484
+ Rendering posts/edit.html.erb within layouts/application
1485
+ Rendered posts/_form.html.erb (6.8ms)
1486
+ Rendered posts/edit.html.erb within layouts/application (8.2ms)
1487
+ Completed 200 OK in 17ms (Views: 13.2ms)
1488
+ ---------------------------------------------
1489
+ PostsControllerTest: test_should_destroy_post
1490
+ ---------------------------------------------
1491
+ Started DELETE "/posts/23" for 127.0.0.1 at 2016-12-12 12:20:23 +0900
1492
+ Processing by PostsController#destroy as HTML
1493
+ Parameters: {"id"=>"23"}
1494
+ Redirected to http://www.example.com/posts
1495
+ Completed 302 Found in 7ms
1496
+ --------------------------------------------
1497
+ PostsControllerTest: test_should_update_post
1498
+ --------------------------------------------
1499
+ Started PATCH "/posts/24" for 127.0.0.1 at 2016-12-12 12:20:23 +0900
1500
+ Processing by PostsController#update as HTML
1501
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}, "id"=>"24"}
1502
+ Redirected to http://www.example.com/posts/24
1503
+ Completed 302 Found in 6ms
1504
+ ------------------------------------------
1505
+ PostsControllerTest: test_should_show_post
1506
+ ------------------------------------------
1507
+ Started GET "/posts/25" for 127.0.0.1 at 2016-12-12 12:20:46 +0900
1508
+ Processing by PostsController#show as HTML
1509
+ Parameters: {"id"=>"25"}
1510
+ Rendering posts/show.html.erb within layouts/application
1511
+ Rendered posts/show.html.erb within layouts/application (3.5ms)
1512
+ Completed 200 OK in 126ms (Views: 117.1ms)
1513
+ ------------------------------------------
1514
+ PostsControllerTest: test_should_show_post
1515
+ ------------------------------------------
1516
+ Started GET "/posts/26" for 127.0.0.1 at 2016-12-12 12:21:04 +0900
1517
+ Processing by PostsController#show as HTML
1518
+ Parameters: {"id"=>"26"}
1519
+ Rendering posts/show.html.erb within layouts/application
1520
+ Rendered posts/show.html.erb within layouts/application (3.3ms)
1521
+ Completed 200 OK in 126ms (Views: 117.9ms)
1522
+ ------------------------------------------
1523
+ PostsControllerTest: test_should_show_post
1524
+ ------------------------------------------
1525
+ Started GET "/posts/27" for 127.0.0.1 at 2016-12-12 12:21:56 +0900
1526
+ Processing by PostsController#show as HTML
1527
+ Parameters: {"id"=>"27"}
1528
+ Rendering posts/show.html.erb within layouts/application
1529
+ Rendered posts/show.html.erb within layouts/application (3.1ms)
1530
+ Completed 200 OK in 184ms (Views: 175.5ms)
1531
+ ------------------------------------------
1532
+ PostsControllerTest: test_should_show_post
1533
+ ------------------------------------------
1534
+ Started GET "/posts/28" for 127.0.0.1 at 2016-12-12 12:22:14 +0900
1535
+ Processing by PostsController#show as HTML
1536
+ Parameters: {"id"=>"28"}
1537
+ Rendering posts/show.html.erb within layouts/application
1538
+ Rendered posts/show.html.erb within layouts/application (3.6ms)
1539
+ Completed 200 OK in 133ms (Views: 121.1ms)
1540
+ ------------------------------------------
1541
+ PostsControllerTest: test_should_get_index
1542
+ ------------------------------------------
1543
+ Started GET "/posts" for 127.0.0.1 at 2016-12-12 12:22:24 +0900
1544
+ Processing by PostsController#index as HTML
1545
+ Rendering posts/index.html.erb within layouts/application
1546
+ Rendered posts/index.html.erb within layouts/application (9.1ms)
1547
+ Completed 200 OK in 200ms (Views: 192.7ms)
1548
+ --------------------------------------------
1549
+ PostsControllerTest: test_should_update_post
1550
+ --------------------------------------------
1551
+ Started PATCH "/posts/30" for 127.0.0.1 at 2016-12-12 12:22:24 +0900
1552
+ Processing by PostsController#update as HTML
1553
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}, "id"=>"30"}
1554
+ Redirected to http://www.example.com/posts/30
1555
+ Completed 302 Found in 4ms
1556
+ ------------------------------------------
1557
+ PostsControllerTest: test_should_show_post
1558
+ ------------------------------------------
1559
+ Started GET "/posts/31" for 127.0.0.1 at 2016-12-12 12:22:24 +0900
1560
+ Processing by PostsController#show as HTML
1561
+ Parameters: {"id"=>"31"}
1562
+ Rendering posts/show.html.erb within layouts/application
1563
+ Rendered posts/show.html.erb within layouts/application (0.6ms)
1564
+ Completed 200 OK in 5ms (Views: 2.9ms)
1565
+ -----------------------------------------
1566
+ PostsControllerTest: test_should_get_edit
1567
+ -----------------------------------------
1568
+ Started GET "/posts/32/edit" for 127.0.0.1 at 2016-12-12 12:22:24 +0900
1569
+ Processing by PostsController#edit as HTML
1570
+ Parameters: {"id"=>"32"}
1571
+ Rendering posts/edit.html.erb within layouts/application
1572
+ Rendered posts/_form.html.erb (14.5ms)
1573
+ Rendered posts/edit.html.erb within layouts/application (15.6ms)
1574
+ Completed 200 OK in 20ms (Views: 17.9ms)
1575
+ ----------------------------------------
1576
+ PostsControllerTest: test_should_get_new
1577
+ ----------------------------------------
1578
+ Started GET "/posts/new" for 127.0.0.1 at 2016-12-12 12:22:24 +0900
1579
+ Processing by PostsController#new as HTML
1580
+ Rendering posts/new.html.erb within layouts/application
1581
+ Rendered posts/_form.html.erb (3.1ms)
1582
+ Rendered posts/new.html.erb within layouts/application (3.9ms)
1583
+ Completed 200 OK in 8ms (Views: 7.2ms)
1584
+ --------------------------------------------
1585
+ PostsControllerTest: test_should_create_post
1586
+ --------------------------------------------
1587
+ Started POST "/posts" for 127.0.0.1 at 2016-12-12 12:22:24 +0900
1588
+ Processing by PostsController#create as HTML
1589
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}}
1590
+ Redirected to http://www.example.com/posts/35
1591
+ Completed 302 Found in 4ms
1592
+ ---------------------------------------------
1593
+ PostsControllerTest: test_should_destroy_post
1594
+ ---------------------------------------------
1595
+ Started DELETE "/posts/36" for 127.0.0.1 at 2016-12-12 12:22:25 +0900
1596
+ Processing by PostsController#destroy as HTML
1597
+ Parameters: {"id"=>"36"}
1598
+ Redirected to http://www.example.com/posts
1599
+ Completed 302 Found in 4ms
1600
+ ---------------------------------------------
1601
+ PostsControllerTest: test_should_destroy_post
1602
+ ---------------------------------------------
1603
+ ----------------------------------------
1604
+ PostsControllerTest: test_should_get_new
1605
+ ----------------------------------------
1606
+ -----------------------------------------
1607
+ PostsControllerTest: test_should_get_edit
1608
+ -----------------------------------------
1609
+ --------------------------------------------
1610
+ PostsControllerTest: test_should_update_post
1611
+ --------------------------------------------
1612
+ ------------------------------------------
1613
+ PostsControllerTest: test_should_get_index
1614
+ ------------------------------------------
1615
+ ------------------------------------------
1616
+ PostsControllerTest: test_should_show_post
1617
+ ------------------------------------------
1618
+ --------------------------------------------
1619
+ PostsControllerTest: test_should_create_post
1620
+ --------------------------------------------
1621
+ -----------------------------------------
1622
+ PostsControllerTest: test_should_get_edit
1623
+ -----------------------------------------
1624
+ --------------------------------------------
1625
+ PostsControllerTest: test_should_update_post
1626
+ --------------------------------------------
1627
+ --------------------------------------------
1628
+ PostsControllerTest: test_should_create_post
1629
+ --------------------------------------------
1630
+ ----------------------------------------
1631
+ PostsControllerTest: test_should_get_new
1632
+ ----------------------------------------
1633
+ ------------------------------------------
1634
+ PostsControllerTest: test_should_show_post
1635
+ ------------------------------------------
1636
+ ------------------------------------------
1637
+ PostsControllerTest: test_should_get_index
1638
+ ------------------------------------------
1639
+ ---------------------------------------------
1640
+ PostsControllerTest: test_should_destroy_post
1641
+ ---------------------------------------------
1642
+ ---------------------------------------------
1643
+ PostsControllerTest: test_should_destroy_post
1644
+ ---------------------------------------------
1645
+ ------------------------------------------
1646
+ PostsControllerTest: test_should_show_post
1647
+ ------------------------------------------
1648
+ -----------------------------------------
1649
+ PostsControllerTest: test_should_get_edit
1650
+ -----------------------------------------
1651
+ ------------------------------------------
1652
+ PostsControllerTest: test_should_get_index
1653
+ ------------------------------------------
1654
+ ----------------------------------------
1655
+ PostsControllerTest: test_should_get_new
1656
+ ----------------------------------------
1657
+ --------------------------------------------
1658
+ PostsControllerTest: test_should_update_post
1659
+ --------------------------------------------
1660
+ --------------------------------------------
1661
+ PostsControllerTest: test_should_create_post
1662
+ --------------------------------------------
1663
+ --------------------------------------------
1664
+ PostsControllerTest: test_should_create_post
1665
+ --------------------------------------------
1666
+ ------------------------------------------
1667
+ PostsControllerTest: test_should_show_post
1668
+ ------------------------------------------
1669
+ ----------------------------------------
1670
+ PostsControllerTest: test_should_get_new
1671
+ ----------------------------------------
1672
+ ---------------------------------------------
1673
+ PostsControllerTest: test_should_destroy_post
1674
+ ---------------------------------------------
1675
+ ------------------------------------------
1676
+ PostsControllerTest: test_should_get_index
1677
+ ------------------------------------------
1678
+ --------------------------------------------
1679
+ PostsControllerTest: test_should_update_post
1680
+ --------------------------------------------
1681
+ -----------------------------------------
1682
+ PostsControllerTest: test_should_get_edit
1683
+ -----------------------------------------
1684
+ ------------------------------------------
1685
+ PostsControllerTest: test_should_show_post
1686
+ ------------------------------------------
1687
+ Started GET "/posts/15" for 127.0.0.1 at 2016-12-19 12:17:24 +0900
1688
+ Processing by PostsController#show as HTML
1689
+ Parameters: {"id"=>"15"}
1690
+ Rendering posts/show.html.erb within layouts/application
1691
+ Rendered posts/show.html.erb within layouts/application (14.4ms)
1692
+ Completed 200 OK in 340ms (Views: 322.9ms)
1693
+ ------------------------------------------
1694
+ PostsControllerTest: test_should_get_index
1695
+ ------------------------------------------
1696
+ Started GET "/posts" for 127.0.0.1 at 2016-12-19 12:17:24 +0900
1697
+ Processing by PostsController#index as HTML
1698
+ Rendering posts/index.html.erb within layouts/application
1699
+ Rendered posts/index.html.erb within layouts/application (4.5ms)
1700
+ Completed 200 OK in 25ms (Views: 9.3ms)
1701
+ ----------------------------------------
1702
+ PostsControllerTest: test_should_get_new
1703
+ ----------------------------------------
1704
+ Started GET "/posts/new" for 127.0.0.1 at 2016-12-19 12:17:24 +0900
1705
+ Processing by PostsController#new as HTML
1706
+ Rendering posts/new.html.erb within layouts/application
1707
+ Rendered posts/_form.html.erb (64.1ms)
1708
+ Rendered posts/new.html.erb within layouts/application (65.5ms)
1709
+ Completed 200 OK in 77ms (Views: 76.0ms)
1710
+ ---------------------------------------------
1711
+ PostsControllerTest: test_should_destroy_post
1712
+ ---------------------------------------------
1713
+ Started DELETE "/posts/18" for 127.0.0.1 at 2016-12-19 12:17:25 +0900
1714
+ Processing by PostsController#destroy as HTML
1715
+ Parameters: {"id"=>"18"}
1716
+ Redirected to http://www.example.com/posts
1717
+ Completed 302 Found in 5ms
1718
+ -----------------------------------------
1719
+ PostsControllerTest: test_should_get_edit
1720
+ -----------------------------------------
1721
+ Started GET "/posts/19/edit" for 127.0.0.1 at 2016-12-19 12:17:25 +0900
1722
+ Processing by PostsController#edit as HTML
1723
+ Parameters: {"id"=>"19"}
1724
+ Rendering posts/edit.html.erb within layouts/application
1725
+ Rendered posts/_form.html.erb (3.2ms)
1726
+ Rendered posts/edit.html.erb within layouts/application (4.1ms)
1727
+ Completed 200 OK in 12ms (Views: 7.9ms)
1728
+ --------------------------------------------
1729
+ PostsControllerTest: test_should_create_post
1730
+ --------------------------------------------
1731
+ Started POST "/posts" for 127.0.0.1 at 2016-12-19 12:17:25 +0900
1732
+ Processing by PostsController#create as HTML
1733
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}}
1734
+ Redirected to http://www.example.com/posts/21
1735
+ Completed 302 Found in 3ms
1736
+ --------------------------------------------
1737
+ PostsControllerTest: test_should_update_post
1738
+ --------------------------------------------
1739
+ Started PATCH "/posts/22" for 127.0.0.1 at 2016-12-19 12:17:25 +0900
1740
+ Processing by PostsController#update as HTML
1741
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}, "id"=>"22"}
1742
+ Redirected to http://www.example.com/posts/22
1743
+ Completed 302 Found in 3ms
1744
+ -----------------------------------------
1745
+ PostsControllerTest: test_should_get_edit
1746
+ -----------------------------------------
1747
+ ---------------------------------------------
1748
+ PostsControllerTest: test_should_destroy_post
1749
+ ---------------------------------------------
1750
+ ----------------------------------------
1751
+ PostsControllerTest: test_should_get_new
1752
+ ----------------------------------------
1753
+ ------------------------------------------
1754
+ PostsControllerTest: test_should_show_post
1755
+ ------------------------------------------
1756
+ --------------------------------------------
1757
+ PostsControllerTest: test_should_update_post
1758
+ --------------------------------------------
1759
+ --------------------------------------------
1760
+ PostsControllerTest: test_should_create_post
1761
+ --------------------------------------------
1762
+ ------------------------------------------
1763
+ PostsControllerTest: test_should_get_index
1764
+ ------------------------------------------
1765
+ ---------------------------------------------
1766
+ PostsControllerTest: test_should_destroy_post
1767
+ ---------------------------------------------
1768
+ Started DELETE "/posts/24" for 127.0.0.1 at 2016-12-19 17:10:11 +0900
1769
+ Processing by PostsController#destroy as HTML
1770
+ Parameters: {"id"=>"24"}
1771
+ Redirected to http://www.example.com/posts
1772
+ Completed 302 Found in 19ms
1773
+ -----------------------------------------
1774
+ PostsControllerTest: test_should_get_edit
1775
+ -----------------------------------------
1776
+ Started GET "/posts/25/edit" for 127.0.0.1 at 2016-12-19 17:10:11 +0900
1777
+ Processing by PostsController#edit as HTML
1778
+ Parameters: {"id"=>"25"}
1779
+ Rendering posts/edit.html.erb within layouts/application
1780
+ Rendered posts/_form.html.erb (18.1ms)
1781
+ Rendered posts/edit.html.erb within layouts/application (20.1ms)
1782
+ Completed 200 OK in 173ms (Views: 169.9ms)
1783
+ ------------------------------------------
1784
+ PostsControllerTest: test_should_show_post
1785
+ ------------------------------------------
1786
+ Started GET "/posts/26" for 127.0.0.1 at 2016-12-19 17:10:11 +0900
1787
+ Processing by PostsController#show as HTML
1788
+ Parameters: {"id"=>"26"}
1789
+ Rendering posts/show.html.erb within layouts/application
1790
+ Rendered posts/show.html.erb within layouts/application (0.9ms)
1791
+ Completed 200 OK in 7ms (Views: 3.7ms)
1792
+ ----------------------------------------
1793
+ PostsControllerTest: test_should_get_new
1794
+ ----------------------------------------
1795
+ Started GET "/posts/new" for 127.0.0.1 at 2016-12-19 17:10:11 +0900
1796
+ Processing by PostsController#new as HTML
1797
+ Rendering posts/new.html.erb within layouts/application
1798
+ Rendered posts/_form.html.erb (2.3ms)
1799
+ Rendered posts/new.html.erb within layouts/application (3.4ms)
1800
+ Completed 200 OK in 7ms (Views: 6.2ms)
1801
+ --------------------------------------------
1802
+ PostsControllerTest: test_should_create_post
1803
+ --------------------------------------------
1804
+ Started POST "/posts" for 127.0.0.1 at 2016-12-19 17:10:11 +0900
1805
+ Processing by PostsController#create as HTML
1806
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}}
1807
+ Redirected to http://www.example.com/posts/29
1808
+ Completed 302 Found in 4ms
1809
+ ------------------------------------------
1810
+ PostsControllerTest: test_should_get_index
1811
+ ------------------------------------------
1812
+ Started GET "/posts" for 127.0.0.1 at 2016-12-19 17:10:11 +0900
1813
+ Processing by PostsController#index as HTML
1814
+ Rendering posts/index.html.erb within layouts/application
1815
+ Rendered posts/index.html.erb within layouts/application (4.5ms)
1816
+ Completed 200 OK in 10ms (Views: 8.5ms)
1817
+ --------------------------------------------
1818
+ PostsControllerTest: test_should_update_post
1819
+ --------------------------------------------
1820
+ Started PATCH "/posts/31" for 127.0.0.1 at 2016-12-19 17:10:11 +0900
1821
+ Processing by PostsController#update as HTML
1822
+ Parameters: {"post"=>{"body"=>"World", "title"=>"Hello"}, "id"=>"31"}
1823
+ Redirected to http://www.example.com/posts/31
1824
+ Completed 302 Found in 8ms