typo 5.2 → 5.2.98

Sign up to get free protection for your applications and to get access to all the features.
Files changed (862) hide show
  1. data/CHANGELOG +641 -1
  2. data/README +3 -3
  3. data/UPGRADE +140 -0
  4. data/app/controllers/accounts_controller.rb +6 -1
  5. data/app/controllers/admin/base_controller.rb +1 -18
  6. data/app/controllers/admin/cache_controller.rb +1 -7
  7. data/app/controllers/admin/content_controller.rb +12 -5
  8. data/app/controllers/admin/feedback_controller.rb +2 -2
  9. data/app/controllers/admin/pages_controller.rb +10 -1
  10. data/app/controllers/admin/settings_controller.rb +23 -1
  11. data/app/controllers/admin/users_controller.rb +1 -0
  12. data/app/controllers/application.rb +10 -0
  13. data/app/controllers/articles_controller.rb +31 -43
  14. data/app/controllers/comments_controller.rb +17 -5
  15. data/app/controllers/content_controller.rb +0 -18
  16. data/app/controllers/feedback_controller.rb +21 -40
  17. data/app/controllers/grouping_controller.rb +13 -7
  18. data/app/controllers/redirect_controller.rb +124 -7
  19. data/app/controllers/trackbacks_controller.rb +2 -2
  20. data/app/controllers/xml_controller.rb +5 -3
  21. data/app/helpers/admin/base_helper.rb +23 -6
  22. data/app/helpers/admin/content_helper.rb +66 -0
  23. data/app/helpers/admin/settings_helper.rb +5 -5
  24. data/app/helpers/application_helper.rb +15 -23
  25. data/app/helpers/articles_helper.rb +15 -0
  26. data/app/helpers/redirect_helper.rb +11 -0
  27. data/app/helpers/sidebar_helper.rb +0 -1
  28. data/app/models/article.rb +73 -56
  29. data/app/models/blog.rb +31 -10
  30. data/app/models/blog_sweeper.rb +1 -7
  31. data/app/models/cache_information.rb +19 -0
  32. data/app/models/content.rb +2 -2
  33. data/app/models/page_cache.rb +27 -11
  34. data/app/models/ping.rb +5 -4
  35. data/app/models/user.rb +2 -1
  36. data/app/views/admin/content/_form.html.erb +24 -8
  37. data/app/views/admin/content/_simple_editor.html.erb +12 -0
  38. data/app/views/admin/content/_visual_editor.html.erb +10 -0
  39. data/app/views/admin/content/new.html.erb +1 -1
  40. data/app/views/admin/dashboard/_comments.html.erb +1 -1
  41. data/app/views/admin/dashboard/_overview.html.erb +3 -3
  42. data/app/views/admin/dashboard/_posts.html.erb +1 -1
  43. data/app/views/admin/dashboard/_typo_dev.html.erb +1 -1
  44. data/app/views/admin/feedback/_item.html.erb +2 -2
  45. data/app/views/admin/feedback/article.html.erb +1 -1
  46. data/app/views/admin/pages/_form.html.erb +26 -5
  47. data/app/views/admin/pages/_simple_editor.html.erb +13 -0
  48. data/app/views/admin/pages/_visual_editor.html.erb +12 -0
  49. data/app/views/admin/settings/index.html.erb +2 -15
  50. data/app/views/admin/settings/read.html.erb +5 -0
  51. data/app/views/admin/settings/seo.html.erb +26 -2
  52. data/app/views/admin/sidebar/index.html.erb +6 -1
  53. data/app/views/admin/sidebar/publish.rjs +0 -2
  54. data/app/views/admin/users/_form.html.erb +17 -10
  55. data/app/views/admin/users/index.html.erb +3 -1
  56. data/app/views/articles/_article.html.erb +1 -1
  57. data/app/views/articles/_comment.html.erb +1 -2
  58. data/app/views/articles/_comment_box.html.erb +2 -2
  59. data/app/views/articles/_trackback.html.erb +0 -1
  60. data/app/views/articles/comment_preview.html.erb +1 -1
  61. data/app/views/articles/index.html.erb +4 -4
  62. data/app/views/{live/search.html.erb → articles/live_search.html.erb} +0 -0
  63. data/app/views/articles/read.html.erb +1 -1
  64. data/app/views/layouts/accounts.html.erb +7 -7
  65. data/app/views/layouts/administration.html.erb +3 -4
  66. data/app/views/xml/feed.rss.builder +3 -0
  67. data/config/environment.rb +19 -4
  68. data/config/environments/development.rb +1 -1
  69. data/config/routes.rb +42 -100
  70. data/db/migrate/078_add_textfilter_to_users.rb +19 -0
  71. data/db/migrate/079_move_editor_as_string.rb +20 -0
  72. data/db/migrate/080_add_state_to_user.rb +18 -0
  73. data/db/migrate/081_create_cache_informations.rb +28 -0
  74. data/db/schema.rb +12 -2
  75. data/doc/typo-5.3-release-notes.txt +105 -0
  76. data/lib/tasks/release.rake +1 -1
  77. data/migrate.txt +142 -0
  78. data/public/images/calendar_date_select/calendar.gif +0 -0
  79. data/public/javascripts/administration.js +19 -2
  80. data/public/javascripts/calendar_date_select/calendar_date_select.js +443 -0
  81. data/public/javascripts/calendar_date_select/format_db.js +27 -0
  82. data/public/javascripts/growler.js +168 -0
  83. data/public/robots.txt +5 -5
  84. data/public/stylesheets/administration.css +42 -11
  85. data/public/stylesheets/calendar_date_select/default.css +136 -0
  86. data/public/stylesheets/growler.css +216 -0
  87. data/spec/controllers/accounts_controller_spec.rb +54 -1
  88. data/spec/controllers/admin/cache_controller_spec.rb +0 -9
  89. data/spec/controllers/admin/content_controller_spec.rb +17 -25
  90. data/spec/controllers/admin/settings_controller_spec.rb +61 -18
  91. data/spec/controllers/admin/tags_controller_spec.rb +54 -19
  92. data/spec/controllers/articles_controller_spec.rb +74 -3
  93. data/spec/controllers/backend_controller_spec.rb +1 -0
  94. data/spec/controllers/categories_controller_spec.rb +28 -34
  95. data/spec/controllers/comments_controller_spec.rb +23 -74
  96. data/spec/controllers/redirect_controller_spec.rb +114 -23
  97. data/spec/controllers/routes/xml_routing_spec.rb +79 -0
  98. data/spec/controllers/tags_controller_spec.rb +17 -0
  99. data/spec/controllers/xml_controller_spec.rb +2 -2
  100. data/spec/factories.rb +26 -0
  101. data/spec/models/article_spec.rb +32 -38
  102. data/spec/models/blog_spec.rb +24 -0
  103. data/spec/models/cache_information_spec.rb +42 -0
  104. data/spec/models/page_cache_spec.rb +30 -0
  105. data/spec/models/ping_spec.rb +39 -0
  106. data/spec/models/user_spec.rb +6 -2
  107. data/spec/spec_helper.rb +14 -0
  108. data/spec/views/articles/index_spec.rb +5 -0
  109. data/spec/views/articles/read_spec.rb +53 -0
  110. data/spec/views/comments/html_sanitization_spec.rb +0 -1
  111. data/test/fixtures/blogs.yml +1 -0
  112. data/test/fixtures/contents.yml +20 -1
  113. data/test/fixtures/users.yml +27 -4
  114. data/themes/dirtylicious/layouts/default.html.erb +3 -6
  115. data/themes/dirtylicious/views/articles/_article.html.erb +2 -2
  116. data/themes/dirtylicious/views/articles/_comment.html.erb +1 -1
  117. data/themes/dirtylicious/views/articles/_comment_form.html.erb +2 -2
  118. data/themes/dirtylicious/views/articles/comment_preview.html.erb +1 -1
  119. data/themes/scribbish/layouts/default.html.erb +2 -5
  120. data/themes/scribbish/views/articles/_article.html.erb +2 -2
  121. data/themes/scribbish/views/articles/_comment.html.erb +1 -1
  122. data/themes/scribbish/views/articles/_comment_form.html.erb +2 -2
  123. data/themes/standard_issue/layouts/default.html.erb +3 -6
  124. data/themes/standard_issue/views/articles/_article.html.erb +2 -2
  125. data/themes/standard_issue/views/articles/_comment.html.erb +1 -1
  126. data/themes/standard_issue/views/articles/_comment_form.html.erb +2 -2
  127. data/themes/standard_issue/views/articles/comment_preview.html.erb +1 -1
  128. data/themes/typographic/layouts/default.html.erb +17 -18
  129. data/themes/typographic/stylesheets/layout.css +4 -7
  130. data/themes/typographic/views/articles/_article.html.erb +2 -2
  131. data/themes/typographic/views/articles/_comment.html.erb +1 -1
  132. data/themes/typographic/views/articles/_comment_form.html.erb +2 -2
  133. data/themes/typographic/views/articles/comment_preview.html.erb +1 -1
  134. data/vendor/plugins/datestamped_resources/lib/datestamped_resources.rb +1 -1
  135. data/vendor/plugins/livesearch_sidebar/views/content.rhtml +5 -5
  136. data/vendor/plugins/{action_view_patch → search_sidebar}/Rakefile +3 -3
  137. data/vendor/plugins/search_sidebar/init.rb +4 -0
  138. data/vendor/plugins/search_sidebar/lib/search_sidebar.rb +6 -0
  139. data/vendor/plugins/search_sidebar/test/search_sidebar_test.rb +8 -0
  140. data/{app/views/shared/_search.html.erb → vendor/plugins/search_sidebar/views/content.rhtml} +3 -1
  141. data/vendor/plugins/typo_textfilter_code/test/typo_textfilter_code_test.rb +1 -1
  142. data/vendor/plugins/typo_textfilter_flickr/test/typo_textfilter_flickr_test.rb +1 -1
  143. data/vendor/plugins/typo_textfilter_htmlfilter/test/typo_textfilter_htmlfilter_test.rb +1 -1
  144. data/vendor/plugins/typo_textfilter_lightbox/test/typo_textfilter_lightbox_test.rb +1 -1
  145. data/vendor/plugins/typo_textfilter_markdown/test/typo_textfilter_markdown_test.rb +1 -1
  146. data/vendor/plugins/typo_textfilter_none/test/typo_textfilter_none_test.rb +1 -1
  147. data/vendor/plugins/typo_textfilter_smartypants/test/typo_textfilter_smartypants_test.rb +1 -1
  148. data/vendor/plugins/typo_textfilter_textile/test/typo_textfilter_textile_test.rb +1 -1
  149. data/vendor/plugins/typo_textfilter_textile_and_markdown/test/typo_textfilter_textile_and_markdown_test.rb +1 -1
  150. data/vendor/plugins/xml_sidebar/lib/xml_sidebar.rb +1 -0
  151. metadata +44 -889
  152. data/app/controllers/authors_controller.rb +0 -5
  153. data/app/controllers/live_controller.rb +0 -11
  154. data/app/controllers/users_controller.rb +0 -4
  155. data/app/models/url_policy.rb +0 -179
  156. data/app/views/admin/content/show.html.erb +0 -2
  157. data/doc/typo-5.2-release-notes.txt +0 -52
  158. data/spec/controllers/authors_controller_spec.rb +0 -108
  159. data/spec/models/metafragment_spec.rb +0 -77
  160. data/spec/models/url_policy_spec.rb +0 -65
  161. data/vendor/actionwebservice/CHANGELOG +0 -320
  162. data/vendor/actionwebservice/MIT-LICENSE +0 -21
  163. data/vendor/actionwebservice/README +0 -381
  164. data/vendor/actionwebservice/Rakefile +0 -173
  165. data/vendor/actionwebservice/TODO +0 -32
  166. data/vendor/actionwebservice/actionwebservice.gemspec +0 -26
  167. data/vendor/actionwebservice/examples/googlesearch/README +0 -143
  168. data/vendor/actionwebservice/examples/googlesearch/autoloading/google_search_api.rb +0 -50
  169. data/vendor/actionwebservice/examples/googlesearch/autoloading/google_search_controller.rb +0 -57
  170. data/vendor/actionwebservice/examples/googlesearch/delegated/google_search_service.rb +0 -108
  171. data/vendor/actionwebservice/examples/googlesearch/delegated/search_controller.rb +0 -7
  172. data/vendor/actionwebservice/examples/googlesearch/direct/google_search_api.rb +0 -50
  173. data/vendor/actionwebservice/examples/googlesearch/direct/search_controller.rb +0 -58
  174. data/vendor/actionwebservice/examples/metaWeblog/README +0 -17
  175. data/vendor/actionwebservice/examples/metaWeblog/apis/blogger_api.rb +0 -60
  176. data/vendor/actionwebservice/examples/metaWeblog/apis/blogger_service.rb +0 -34
  177. data/vendor/actionwebservice/examples/metaWeblog/apis/meta_weblog_api.rb +0 -67
  178. data/vendor/actionwebservice/examples/metaWeblog/apis/meta_weblog_service.rb +0 -48
  179. data/vendor/actionwebservice/examples/metaWeblog/controllers/xmlrpc_controller.rb +0 -16
  180. data/vendor/actionwebservice/generators/web_service/USAGE +0 -28
  181. data/vendor/actionwebservice/generators/web_service/templates/api_definition.rb +0 -5
  182. data/vendor/actionwebservice/generators/web_service/templates/controller.rb +0 -8
  183. data/vendor/actionwebservice/generators/web_service/templates/functional_test.rb +0 -19
  184. data/vendor/actionwebservice/generators/web_service/web_service_generator.rb +0 -29
  185. data/vendor/actionwebservice/install.rb +0 -30
  186. data/vendor/actionwebservice/lib/action_web_service.rb +0 -66
  187. data/vendor/actionwebservice/lib/action_web_service/api.rb +0 -297
  188. data/vendor/actionwebservice/lib/action_web_service/base.rb +0 -38
  189. data/vendor/actionwebservice/lib/action_web_service/casting.rb +0 -144
  190. data/vendor/actionwebservice/lib/action_web_service/client.rb +0 -3
  191. data/vendor/actionwebservice/lib/action_web_service/client/base.rb +0 -28
  192. data/vendor/actionwebservice/lib/action_web_service/client/soap_client.rb +0 -113
  193. data/vendor/actionwebservice/lib/action_web_service/client/xmlrpc_client.rb +0 -58
  194. data/vendor/actionwebservice/lib/action_web_service/container.rb +0 -3
  195. data/vendor/actionwebservice/lib/action_web_service/container/action_controller_container.rb +0 -93
  196. data/vendor/actionwebservice/lib/action_web_service/container/delegated_container.rb +0 -86
  197. data/vendor/actionwebservice/lib/action_web_service/container/direct_container.rb +0 -69
  198. data/vendor/actionwebservice/lib/action_web_service/dispatcher.rb +0 -2
  199. data/vendor/actionwebservice/lib/action_web_service/dispatcher/abstract.rb +0 -207
  200. data/vendor/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb +0 -379
  201. data/vendor/actionwebservice/lib/action_web_service/invocation.rb +0 -202
  202. data/vendor/actionwebservice/lib/action_web_service/protocol.rb +0 -4
  203. data/vendor/actionwebservice/lib/action_web_service/protocol/abstract.rb +0 -112
  204. data/vendor/actionwebservice/lib/action_web_service/protocol/discovery.rb +0 -37
  205. data/vendor/actionwebservice/lib/action_web_service/protocol/soap_protocol.rb +0 -176
  206. data/vendor/actionwebservice/lib/action_web_service/protocol/soap_protocol/marshaler.rb +0 -242
  207. data/vendor/actionwebservice/lib/action_web_service/protocol/xmlrpc_protocol.rb +0 -122
  208. data/vendor/actionwebservice/lib/action_web_service/scaffolding.rb +0 -283
  209. data/vendor/actionwebservice/lib/action_web_service/struct.rb +0 -64
  210. data/vendor/actionwebservice/lib/action_web_service/support/class_inheritable_options.rb +0 -26
  211. data/vendor/actionwebservice/lib/action_web_service/support/signature_types.rb +0 -226
  212. data/vendor/actionwebservice/lib/action_web_service/templates/scaffolds/layout.html.erb +0 -65
  213. data/vendor/actionwebservice/lib/action_web_service/templates/scaffolds/methods.html.erb +0 -6
  214. data/vendor/actionwebservice/lib/action_web_service/templates/scaffolds/parameters.html.erb +0 -29
  215. data/vendor/actionwebservice/lib/action_web_service/templates/scaffolds/result.html.erb +0 -30
  216. data/vendor/actionwebservice/lib/action_web_service/test_invoke.rb +0 -110
  217. data/vendor/actionwebservice/lib/action_web_service/version.rb +0 -9
  218. data/vendor/actionwebservice/lib/actionwebservice.rb +0 -1
  219. data/vendor/actionwebservice/setup.rb +0 -1379
  220. data/vendor/actionwebservice/test/abstract_client.rb +0 -183
  221. data/vendor/actionwebservice/test/abstract_dispatcher.rb +0 -547
  222. data/vendor/actionwebservice/test/abstract_unit.rb +0 -33
  223. data/vendor/actionwebservice/test/api_test.rb +0 -102
  224. data/vendor/actionwebservice/test/apis/auto_load_api.rb +0 -3
  225. data/vendor/actionwebservice/test/apis/broken_auto_load_api.rb +0 -2
  226. data/vendor/actionwebservice/test/base_test.rb +0 -42
  227. data/vendor/actionwebservice/test/casting_test.rb +0 -86
  228. data/vendor/actionwebservice/test/client_soap_test.rb +0 -153
  229. data/vendor/actionwebservice/test/client_xmlrpc_test.rb +0 -151
  230. data/vendor/actionwebservice/test/container_test.rb +0 -73
  231. data/vendor/actionwebservice/test/dispatcher_action_controller_soap_test.rb +0 -137
  232. data/vendor/actionwebservice/test/dispatcher_action_controller_xmlrpc_test.rb +0 -59
  233. data/vendor/actionwebservice/test/fixtures/db_definitions/mysql.sql +0 -8
  234. data/vendor/actionwebservice/test/fixtures/users.yml +0 -12
  235. data/vendor/actionwebservice/test/gencov +0 -3
  236. data/vendor/actionwebservice/test/invocation_test.rb +0 -185
  237. data/vendor/actionwebservice/test/run +0 -6
  238. data/vendor/actionwebservice/test/scaffolded_controller_test.rb +0 -146
  239. data/vendor/actionwebservice/test/struct_test.rb +0 -52
  240. data/vendor/actionwebservice/test/test_invoke_test.rb +0 -112
  241. data/vendor/plugins/action_view_patch/init.rb +0 -1
  242. data/vendor/plugins/action_view_patch/lib/action_view_patch.rb +0 -18
  243. data/vendor/plugins/action_view_patch/test/action_view_patch_test.rb +0 -56
  244. data/vendor/plugins/auto_complete/README +0 -23
  245. data/vendor/plugins/auto_complete/Rakefile +0 -22
  246. data/vendor/plugins/auto_complete/init.rb +0 -2
  247. data/vendor/plugins/auto_complete/lib/auto_complete.rb +0 -47
  248. data/vendor/plugins/auto_complete/lib/auto_complete_macros_helper.rb +0 -143
  249. data/vendor/plugins/auto_complete/test/auto_complete_test.rb +0 -67
  250. data/vendor/plugins/expiring_action_cache/init.rb +0 -2
  251. data/vendor/plugins/expiring_action_cache/lib/actionparamcache.rb +0 -116
  252. data/vendor/plugins/expiring_action_cache/lib/metafragment.rb +0 -46
  253. data/vendor/plugins/rspec-rails/History.txt +0 -93
  254. data/vendor/plugins/rspec-rails/License.txt +0 -33
  255. data/vendor/plugins/rspec-rails/Manifest.txt +0 -161
  256. data/vendor/plugins/rspec-rails/README.txt +0 -46
  257. data/vendor/plugins/rspec-rails/Rakefile +0 -39
  258. data/vendor/plugins/rspec-rails/UPGRADE +0 -7
  259. data/vendor/plugins/rspec-rails/generators/rspec/CHANGES +0 -1
  260. data/vendor/plugins/rspec-rails/generators/rspec/rspec_generator.rb +0 -40
  261. data/vendor/plugins/rspec-rails/generators/rspec/templates/all_stories.rb +0 -4
  262. data/vendor/plugins/rspec-rails/generators/rspec/templates/previous_failures.txt +0 -0
  263. data/vendor/plugins/rspec-rails/generators/rspec/templates/rcov.opts +0 -2
  264. data/vendor/plugins/rspec-rails/generators/rspec/templates/rspec.rake +0 -132
  265. data/vendor/plugins/rspec-rails/generators/rspec/templates/script/autospec +0 -5
  266. data/vendor/plugins/rspec-rails/generators/rspec/templates/script/spec +0 -5
  267. data/vendor/plugins/rspec-rails/generators/rspec/templates/script/spec_server +0 -116
  268. data/vendor/plugins/rspec-rails/generators/rspec/templates/spec.opts +0 -4
  269. data/vendor/plugins/rspec-rails/generators/rspec/templates/spec_helper.rb +0 -47
  270. data/vendor/plugins/rspec-rails/generators/rspec/templates/stories_helper.rb +0 -3
  271. data/vendor/plugins/rspec-rails/generators/rspec_controller/USAGE +0 -33
  272. data/vendor/plugins/rspec-rails/generators/rspec_controller/rspec_controller_generator.rb +0 -49
  273. data/vendor/plugins/rspec-rails/generators/rspec_controller/templates/controller_spec.rb +0 -25
  274. data/vendor/plugins/rspec-rails/generators/rspec_controller/templates/helper_spec.rb +0 -11
  275. data/vendor/plugins/rspec-rails/generators/rspec_controller/templates/view_spec.rb +0 -12
  276. data/vendor/plugins/rspec-rails/generators/rspec_default_values.rb +0 -19
  277. data/vendor/plugins/rspec-rails/generators/rspec_model/USAGE +0 -18
  278. data/vendor/plugins/rspec-rails/generators/rspec_model/rspec_model_generator.rb +0 -35
  279. data/vendor/plugins/rspec-rails/generators/rspec_model/templates/model_spec.rb +0 -15
  280. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/rspec_scaffold_generator.rb +0 -154
  281. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/controller_spec.rb +0 -173
  282. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/edit_erb_spec.rb +0 -26
  283. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/helper_spec.rb +0 -11
  284. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/index_erb_spec.rb +0 -27
  285. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/new_erb_spec.rb +0 -26
  286. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/routing_spec.rb +0 -59
  287. data/vendor/plugins/rspec-rails/generators/rspec_scaffold/templates/show_erb_spec.rb +0 -23
  288. data/vendor/plugins/rspec-rails/init.rb +0 -9
  289. data/vendor/plugins/rspec-rails/lib/autotest/discover.rb +0 -1
  290. data/vendor/plugins/rspec-rails/lib/autotest/rails_rspec.rb +0 -76
  291. data/vendor/plugins/rspec-rails/lib/spec/rails.rb +0 -15
  292. data/vendor/plugins/rspec-rails/lib/spec/rails/example.rb +0 -47
  293. data/vendor/plugins/rspec-rails/lib/spec/rails/example/assigns_hash_proxy.rb +0 -40
  294. data/vendor/plugins/rspec-rails/lib/spec/rails/example/controller_example_group.rb +0 -256
  295. data/vendor/plugins/rspec-rails/lib/spec/rails/example/cookies_proxy.rb +0 -25
  296. data/vendor/plugins/rspec-rails/lib/spec/rails/example/functional_example_group.rb +0 -87
  297. data/vendor/plugins/rspec-rails/lib/spec/rails/example/helper_example_group.rb +0 -170
  298. data/vendor/plugins/rspec-rails/lib/spec/rails/example/model_example_group.rb +0 -14
  299. data/vendor/plugins/rspec-rails/lib/spec/rails/example/rails_example_group.rb +0 -33
  300. data/vendor/plugins/rspec-rails/lib/spec/rails/example/render_observer.rb +0 -93
  301. data/vendor/plugins/rspec-rails/lib/spec/rails/example/view_example_group.rb +0 -183
  302. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions.rb +0 -12
  303. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/action_controller/base.rb +0 -14
  304. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/action_controller/rescue.rb +0 -21
  305. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/action_controller/test_response.rb +0 -11
  306. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/action_view/base.rb +0 -31
  307. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/active_record/base.rb +0 -30
  308. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/object.rb +0 -5
  309. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/spec/example/configuration.rb +0 -71
  310. data/vendor/plugins/rspec-rails/lib/spec/rails/extensions/spec/matchers/have.rb +0 -21
  311. data/vendor/plugins/rspec-rails/lib/spec/rails/interop/testcase.rb +0 -14
  312. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers.rb +0 -31
  313. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers/assert_select.rb +0 -131
  314. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers/change.rb +0 -11
  315. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers/have_text.rb +0 -57
  316. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers/include_text.rb +0 -54
  317. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers/redirect_to.rb +0 -113
  318. data/vendor/plugins/rspec-rails/lib/spec/rails/matchers/render_template.rb +0 -90
  319. data/vendor/plugins/rspec-rails/lib/spec/rails/mocks.rb +0 -132
  320. data/vendor/plugins/rspec-rails/lib/spec/rails/story_adapter.rb +0 -79
  321. data/vendor/plugins/rspec-rails/lib/spec/rails/version.rb +0 -15
  322. data/vendor/plugins/rspec-rails/rspec-rails.gemspec +0 -28
  323. data/vendor/plugins/rspec-rails/spec/rails/autotest/mappings_spec.rb +0 -36
  324. data/vendor/plugins/rspec-rails/spec/rails/example/assigns_hash_proxy_spec.rb +0 -96
  325. data/vendor/plugins/rspec-rails/spec/rails/example/configuration_spec.rb +0 -83
  326. data/vendor/plugins/rspec-rails/spec/rails/example/controller_isolation_spec.rb +0 -62
  327. data/vendor/plugins/rspec-rails/spec/rails/example/controller_spec_spec.rb +0 -279
  328. data/vendor/plugins/rspec-rails/spec/rails/example/cookies_proxy_spec.rb +0 -74
  329. data/vendor/plugins/rspec-rails/spec/rails/example/example_group_factory_spec.rb +0 -112
  330. data/vendor/plugins/rspec-rails/spec/rails/example/helper_spec_spec.rb +0 -174
  331. data/vendor/plugins/rspec-rails/spec/rails/example/model_spec_spec.rb +0 -18
  332. data/vendor/plugins/rspec-rails/spec/rails/example/shared_behaviour_spec.rb +0 -16
  333. data/vendor/plugins/rspec-rails/spec/rails/example/test_unit_assertion_accessibility_spec.rb +0 -33
  334. data/vendor/plugins/rspec-rails/spec/rails/example/view_spec_spec.rb +0 -287
  335. data/vendor/plugins/rspec-rails/spec/rails/extensions/action_controller_rescue_action_spec.rb +0 -54
  336. data/vendor/plugins/rspec-rails/spec/rails/extensions/action_view_base_spec.rb +0 -48
  337. data/vendor/plugins/rspec-rails/spec/rails/extensions/active_record_spec.rb +0 -14
  338. data/vendor/plugins/rspec-rails/spec/rails/interop/testcase_spec.rb +0 -66
  339. data/vendor/plugins/rspec-rails/spec/rails/matchers/assert_select_spec.rb +0 -814
  340. data/vendor/plugins/rspec-rails/spec/rails/matchers/description_generation_spec.rb +0 -37
  341. data/vendor/plugins/rspec-rails/spec/rails/matchers/errors_on_spec.rb +0 -25
  342. data/vendor/plugins/rspec-rails/spec/rails/matchers/have_text_spec.rb +0 -62
  343. data/vendor/plugins/rspec-rails/spec/rails/matchers/include_text_spec.rb +0 -64
  344. data/vendor/plugins/rspec-rails/spec/rails/matchers/redirect_to_spec.rb +0 -209
  345. data/vendor/plugins/rspec-rails/spec/rails/matchers/render_template_spec.rb +0 -176
  346. data/vendor/plugins/rspec-rails/spec/rails/matchers/should_change_spec.rb +0 -15
  347. data/vendor/plugins/rspec-rails/spec/rails/mocks/ar_classes.rb +0 -10
  348. data/vendor/plugins/rspec-rails/spec/rails/mocks/mock_model_spec.rb +0 -106
  349. data/vendor/plugins/rspec-rails/spec/rails/mocks/stub_model_spec.rb +0 -80
  350. data/vendor/plugins/rspec-rails/spec/rails/sample_modified_fixture.rb +0 -8
  351. data/vendor/plugins/rspec-rails/spec/rails/sample_spec.rb +0 -8
  352. data/vendor/plugins/rspec-rails/spec/rails/spec_server_spec.rb +0 -96
  353. data/vendor/plugins/rspec-rails/spec/rails/spec_spec.rb +0 -11
  354. data/vendor/plugins/rspec-rails/spec/rails_suite.rb +0 -7
  355. data/vendor/plugins/rspec-rails/spec/spec_helper.rb +0 -58
  356. data/vendor/plugins/rspec-rails/spec_resources/controllers/action_view_base_spec_controller.rb +0 -2
  357. data/vendor/plugins/rspec-rails/spec_resources/controllers/controller_spec_controller.rb +0 -99
  358. data/vendor/plugins/rspec-rails/spec_resources/controllers/redirect_spec_controller.rb +0 -59
  359. data/vendor/plugins/rspec-rails/spec_resources/controllers/render_spec_controller.rb +0 -30
  360. data/vendor/plugins/rspec-rails/spec_resources/controllers/rjs_spec_controller.rb +0 -58
  361. data/vendor/plugins/rspec-rails/spec_resources/helpers/addition_helper.rb +0 -5
  362. data/vendor/plugins/rspec-rails/spec_resources/helpers/explicit_helper.rb +0 -38
  363. data/vendor/plugins/rspec-rails/spec_resources/helpers/more_explicit_helper.rb +0 -5
  364. data/vendor/plugins/rspec-rails/spec_resources/helpers/plugin_application_helper.rb +0 -6
  365. data/vendor/plugins/rspec-rails/spec_resources/helpers/view_spec_helper.rb +0 -13
  366. data/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/_partial.rhtml +0 -0
  367. data/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/action_setting_flash_after_session_reset.rhtml +0 -1
  368. data/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/action_setting_flash_before_session_reset.rhtml +0 -1
  369. data/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/action_setting_the_assigns_hash.rhtml +0 -0
  370. data/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/action_with_errors_in_template.rhtml +0 -1
  371. data/vendor/plugins/rspec-rails/spec_resources/views/controller_spec/action_with_template.rhtml +0 -1
  372. data/vendor/plugins/rspec-rails/spec_resources/views/layouts/application.rhtml +0 -0
  373. data/vendor/plugins/rspec-rails/spec_resources/views/layouts/simple.rhtml +0 -0
  374. data/vendor/plugins/rspec-rails/spec_resources/views/objects/_object.html.erb +0 -1
  375. data/vendor/plugins/rspec-rails/spec_resources/views/render_spec/_a_partial.rhtml +0 -0
  376. data/vendor/plugins/rspec-rails/spec_resources/views/render_spec/action_with_alternate_layout.rhtml +0 -0
  377. data/vendor/plugins/rspec-rails/spec_resources/views/render_spec/some_action.js.rjs +0 -1
  378. data/vendor/plugins/rspec-rails/spec_resources/views/render_spec/some_action.rhtml +0 -0
  379. data/vendor/plugins/rspec-rails/spec_resources/views/render_spec/some_action.rjs +0 -1
  380. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/_replacement_partial.rhtml +0 -1
  381. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/hide_div.rjs +0 -1
  382. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/hide_page_element.rjs +0 -1
  383. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/insert_html.rjs +0 -1
  384. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/replace.rjs +0 -1
  385. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/replace_html.rjs +0 -1
  386. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/replace_html_with_partial.rjs +0 -1
  387. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/visual_effect.rjs +0 -1
  388. data/vendor/plugins/rspec-rails/spec_resources/views/rjs_spec/visual_toggle_effect.rjs +0 -1
  389. data/vendor/plugins/rspec-rails/spec_resources/views/tag_spec/no_tags.rhtml +0 -1
  390. data/vendor/plugins/rspec-rails/spec_resources/views/tag_spec/single_div_with_no_attributes.rhtml +0 -1
  391. data/vendor/plugins/rspec-rails/spec_resources/views/tag_spec/single_div_with_one_attribute.rhtml +0 -1
  392. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/_partial.rhtml +0 -2
  393. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/_partial_used_twice.rhtml +0 -0
  394. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/_partial_with_local_variable.rhtml +0 -1
  395. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/_partial_with_sub_partial.rhtml +0 -1
  396. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/_spacer.rhtml +0 -1
  397. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/accessor.rhtml +0 -5
  398. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/block_helper.rhtml +0 -3
  399. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/entry_form.rhtml +0 -2
  400. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/explicit_helper.rhtml +0 -2
  401. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/foo/show.rhtml +0 -1
  402. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/implicit_helper.rhtml +0 -2
  403. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/multiple_helpers.rhtml +0 -3
  404. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/should_not_receive.rhtml +0 -3
  405. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/template_with_partial.rhtml +0 -5
  406. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/template_with_partial_using_collection.rhtml +0 -3
  407. data/vendor/plugins/rspec-rails/spec_resources/views/view_spec/template_with_partial_with_array.rhtml +0 -1
  408. data/vendor/plugins/rspec-rails/stories/all.rb +0 -10
  409. data/vendor/plugins/rspec-rails/stories/configuration/stories.rb +0 -5
  410. data/vendor/plugins/rspec-rails/stories/helper.rb +0 -6
  411. data/vendor/plugins/rspec-rails/stories/steps/people.rb +0 -8
  412. data/vendor/plugins/rspec-rails/stories/transactions_should_rollback +0 -15
  413. data/vendor/plugins/rspec-rails/stories/transactions_should_rollback.rb +0 -25
  414. data/vendor/plugins/rspec/.autotest +0 -4
  415. data/vendor/plugins/rspec/History.txt +0 -1198
  416. data/vendor/plugins/rspec/License.txt +0 -22
  417. data/vendor/plugins/rspec/Manifest.txt +0 -403
  418. data/vendor/plugins/rspec/README.txt +0 -39
  419. data/vendor/plugins/rspec/Rakefile +0 -89
  420. data/vendor/plugins/rspec/TODO.txt +0 -10
  421. data/vendor/plugins/rspec/bin/autospec +0 -4
  422. data/vendor/plugins/rspec/bin/spec +0 -4
  423. data/vendor/plugins/rspec/examples/pure/autogenerated_docstrings_example.rb +0 -19
  424. data/vendor/plugins/rspec/examples/pure/before_and_after_example.rb +0 -40
  425. data/vendor/plugins/rspec/examples/pure/behave_as_example.rb +0 -45
  426. data/vendor/plugins/rspec/examples/pure/custom_expectation_matchers.rb +0 -54
  427. data/vendor/plugins/rspec/examples/pure/custom_formatter.rb +0 -12
  428. data/vendor/plugins/rspec/examples/pure/dynamic_spec.rb +0 -9
  429. data/vendor/plugins/rspec/examples/pure/file_accessor.rb +0 -19
  430. data/vendor/plugins/rspec/examples/pure/file_accessor_spec.rb +0 -38
  431. data/vendor/plugins/rspec/examples/pure/greeter_spec.rb +0 -31
  432. data/vendor/plugins/rspec/examples/pure/helper_method_example.rb +0 -14
  433. data/vendor/plugins/rspec/examples/pure/io_processor.rb +0 -8
  434. data/vendor/plugins/rspec/examples/pure/io_processor_spec.rb +0 -21
  435. data/vendor/plugins/rspec/examples/pure/legacy_spec.rb +0 -11
  436. data/vendor/plugins/rspec/examples/pure/mocking_example.rb +0 -27
  437. data/vendor/plugins/rspec/examples/pure/multi_threaded_behaviour_runner.rb +0 -28
  438. data/vendor/plugins/rspec/examples/pure/nested_classes_example.rb +0 -36
  439. data/vendor/plugins/rspec/examples/pure/partial_mock_example.rb +0 -29
  440. data/vendor/plugins/rspec/examples/pure/pending_example.rb +0 -20
  441. data/vendor/plugins/rspec/examples/pure/predicate_example.rb +0 -27
  442. data/vendor/plugins/rspec/examples/pure/priority.txt +0 -1
  443. data/vendor/plugins/rspec/examples/pure/shared_example_group_example.rb +0 -81
  444. data/vendor/plugins/rspec/examples/pure/shared_stack_examples.rb +0 -38
  445. data/vendor/plugins/rspec/examples/pure/spec_helper.rb +0 -3
  446. data/vendor/plugins/rspec/examples/pure/stack.rb +0 -36
  447. data/vendor/plugins/rspec/examples/pure/stack_spec.rb +0 -63
  448. data/vendor/plugins/rspec/examples/pure/stack_spec_with_nested_example_groups.rb +0 -67
  449. data/vendor/plugins/rspec/examples/pure/stubbing_example.rb +0 -69
  450. data/vendor/plugins/rspec/examples/pure/yielding_example.rb +0 -33
  451. data/vendor/plugins/rspec/examples/stories/adder.rb +0 -13
  452. data/vendor/plugins/rspec/examples/stories/addition +0 -34
  453. data/vendor/plugins/rspec/examples/stories/addition.rb +0 -9
  454. data/vendor/plugins/rspec/examples/stories/calculator.rb +0 -65
  455. data/vendor/plugins/rspec/examples/stories/game-of-life/.loadpath +0 -5
  456. data/vendor/plugins/rspec/examples/stories/game-of-life/README.txt +0 -21
  457. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/everything.rb +0 -6
  458. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/examples/examples.rb +0 -3
  459. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/examples/game_behaviour.rb +0 -35
  460. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/examples/grid_behaviour.rb +0 -66
  461. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/CellsWithLessThanTwoNeighboursDie.story +0 -21
  462. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/CellsWithMoreThanThreeNeighboursDie.story +0 -21
  463. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/EmptySpacesWithThreeNeighboursCreateACell.story +0 -42
  464. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/ICanCreateACell.story +0 -42
  465. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/ICanKillACell.story +0 -17
  466. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/TheGridWraps.story +0 -53
  467. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/create_a_cell.rb +0 -52
  468. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/helper.rb +0 -6
  469. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/kill_a_cell.rb +0 -26
  470. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/steps.rb +0 -5
  471. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/stories.rb +0 -3
  472. data/vendor/plugins/rspec/examples/stories/game-of-life/behaviour/stories/stories.txt +0 -22
  473. data/vendor/plugins/rspec/examples/stories/game-of-life/life.rb +0 -3
  474. data/vendor/plugins/rspec/examples/stories/game-of-life/life/game.rb +0 -23
  475. data/vendor/plugins/rspec/examples/stories/game-of-life/life/grid.rb +0 -43
  476. data/vendor/plugins/rspec/examples/stories/helper.rb +0 -9
  477. data/vendor/plugins/rspec/examples/stories/steps/addition_steps.rb +0 -18
  478. data/vendor/plugins/rspec/failing_examples/README.txt +0 -7
  479. data/vendor/plugins/rspec/failing_examples/diffing_spec.rb +0 -36
  480. data/vendor/plugins/rspec/failing_examples/failing_autogenerated_docstrings_example.rb +0 -19
  481. data/vendor/plugins/rspec/failing_examples/failure_in_setup.rb +0 -10
  482. data/vendor/plugins/rspec/failing_examples/failure_in_teardown.rb +0 -10
  483. data/vendor/plugins/rspec/failing_examples/mocking_example.rb +0 -40
  484. data/vendor/plugins/rspec/failing_examples/mocking_with_flexmock.rb +0 -26
  485. data/vendor/plugins/rspec/failing_examples/mocking_with_mocha.rb +0 -25
  486. data/vendor/plugins/rspec/failing_examples/mocking_with_rr.rb +0 -27
  487. data/vendor/plugins/rspec/failing_examples/partial_mock_example.rb +0 -20
  488. data/vendor/plugins/rspec/failing_examples/predicate_example.rb +0 -29
  489. data/vendor/plugins/rspec/failing_examples/raising_example.rb +0 -47
  490. data/vendor/plugins/rspec/failing_examples/spec_helper.rb +0 -3
  491. data/vendor/plugins/rspec/failing_examples/syntax_error_example.rb +0 -7
  492. data/vendor/plugins/rspec/failing_examples/team_spec.rb +0 -44
  493. data/vendor/plugins/rspec/failing_examples/timeout_behaviour.rb +0 -7
  494. data/vendor/plugins/rspec/init.rb +0 -9
  495. data/vendor/plugins/rspec/lib/autotest/discover.rb +0 -3
  496. data/vendor/plugins/rspec/lib/autotest/rspec.rb +0 -46
  497. data/vendor/plugins/rspec/lib/spec.rb +0 -32
  498. data/vendor/plugins/rspec/lib/spec/adapters.rb +0 -1
  499. data/vendor/plugins/rspec/lib/spec/adapters/ruby_engine.rb +0 -26
  500. data/vendor/plugins/rspec/lib/spec/adapters/ruby_engine/mri.rb +0 -8
  501. data/vendor/plugins/rspec/lib/spec/adapters/ruby_engine/rubinius.rb +0 -8
  502. data/vendor/plugins/rspec/lib/spec/example.rb +0 -12
  503. data/vendor/plugins/rspec/lib/spec/example/before_and_after_hooks.rb +0 -93
  504. data/vendor/plugins/rspec/lib/spec/example/configuration.rb +0 -167
  505. data/vendor/plugins/rspec/lib/spec/example/errors.rb +0 -30
  506. data/vendor/plugins/rspec/lib/spec/example/example_group.rb +0 -25
  507. data/vendor/plugins/rspec/lib/spec/example/example_group_factory.rb +0 -81
  508. data/vendor/plugins/rspec/lib/spec/example/example_group_methods.rb +0 -368
  509. data/vendor/plugins/rspec/lib/spec/example/example_matcher.rb +0 -44
  510. data/vendor/plugins/rspec/lib/spec/example/example_methods.rb +0 -105
  511. data/vendor/plugins/rspec/lib/spec/example/module_reopening_fix.rb +0 -21
  512. data/vendor/plugins/rspec/lib/spec/example/pending.rb +0 -18
  513. data/vendor/plugins/rspec/lib/spec/example/shared_example_group.rb +0 -52
  514. data/vendor/plugins/rspec/lib/spec/expectations.rb +0 -56
  515. data/vendor/plugins/rspec/lib/spec/expectations/differs/default.rb +0 -66
  516. data/vendor/plugins/rspec/lib/spec/expectations/errors.rb +0 -12
  517. data/vendor/plugins/rspec/lib/spec/expectations/extensions.rb +0 -2
  518. data/vendor/plugins/rspec/lib/spec/expectations/extensions/object.rb +0 -63
  519. data/vendor/plugins/rspec/lib/spec/expectations/extensions/string_and_symbol.rb +0 -17
  520. data/vendor/plugins/rspec/lib/spec/expectations/handler.rb +0 -52
  521. data/vendor/plugins/rspec/lib/spec/extensions.rb +0 -4
  522. data/vendor/plugins/rspec/lib/spec/extensions/class.rb +0 -24
  523. data/vendor/plugins/rspec/lib/spec/extensions/main.rb +0 -87
  524. data/vendor/plugins/rspec/lib/spec/extensions/metaclass.rb +0 -7
  525. data/vendor/plugins/rspec/lib/spec/extensions/object.rb +0 -6
  526. data/vendor/plugins/rspec/lib/spec/interop/test.rb +0 -12
  527. data/vendor/plugins/rspec/lib/spec/interop/test/unit/autorunner.rb +0 -6
  528. data/vendor/plugins/rspec/lib/spec/interop/test/unit/testcase.rb +0 -71
  529. data/vendor/plugins/rspec/lib/spec/interop/test/unit/testresult.rb +0 -6
  530. data/vendor/plugins/rspec/lib/spec/interop/test/unit/testsuite_adapter.rb +0 -34
  531. data/vendor/plugins/rspec/lib/spec/interop/test/unit/ui/console/testrunner.rb +0 -61
  532. data/vendor/plugins/rspec/lib/spec/matchers.rb +0 -162
  533. data/vendor/plugins/rspec/lib/spec/matchers/be.rb +0 -221
  534. data/vendor/plugins/rspec/lib/spec/matchers/be_close.rb +0 -37
  535. data/vendor/plugins/rspec/lib/spec/matchers/change.rb +0 -148
  536. data/vendor/plugins/rspec/lib/spec/matchers/eql.rb +0 -43
  537. data/vendor/plugins/rspec/lib/spec/matchers/equal.rb +0 -43
  538. data/vendor/plugins/rspec/lib/spec/matchers/exist.rb +0 -22
  539. data/vendor/plugins/rspec/lib/spec/matchers/has.rb +0 -34
  540. data/vendor/plugins/rspec/lib/spec/matchers/have.rb +0 -150
  541. data/vendor/plugins/rspec/lib/spec/matchers/include.rb +0 -77
  542. data/vendor/plugins/rspec/lib/spec/matchers/match.rb +0 -41
  543. data/vendor/plugins/rspec/lib/spec/matchers/operator_matcher.rb +0 -79
  544. data/vendor/plugins/rspec/lib/spec/matchers/raise_error.rb +0 -132
  545. data/vendor/plugins/rspec/lib/spec/matchers/respond_to.rb +0 -46
  546. data/vendor/plugins/rspec/lib/spec/matchers/satisfy.rb +0 -47
  547. data/vendor/plugins/rspec/lib/spec/matchers/simple_matcher.rb +0 -132
  548. data/vendor/plugins/rspec/lib/spec/matchers/throw_symbol.rb +0 -74
  549. data/vendor/plugins/rspec/lib/spec/mocks.rb +0 -200
  550. data/vendor/plugins/rspec/lib/spec/mocks/argument_constraints.rb +0 -165
  551. data/vendor/plugins/rspec/lib/spec/mocks/argument_expectation.rb +0 -49
  552. data/vendor/plugins/rspec/lib/spec/mocks/error_generator.rb +0 -84
  553. data/vendor/plugins/rspec/lib/spec/mocks/errors.rb +0 -10
  554. data/vendor/plugins/rspec/lib/spec/mocks/extensions.rb +0 -1
  555. data/vendor/plugins/rspec/lib/spec/mocks/extensions/object.rb +0 -3
  556. data/vendor/plugins/rspec/lib/spec/mocks/framework.rb +0 -15
  557. data/vendor/plugins/rspec/lib/spec/mocks/message_expectation.rb +0 -331
  558. data/vendor/plugins/rspec/lib/spec/mocks/methods.rb +0 -51
  559. data/vendor/plugins/rspec/lib/spec/mocks/mock.rb +0 -56
  560. data/vendor/plugins/rspec/lib/spec/mocks/order_group.rb +0 -29
  561. data/vendor/plugins/rspec/lib/spec/mocks/proxy.rb +0 -224
  562. data/vendor/plugins/rspec/lib/spec/mocks/space.rb +0 -28
  563. data/vendor/plugins/rspec/lib/spec/mocks/spec_methods.rb +0 -46
  564. data/vendor/plugins/rspec/lib/spec/rake/spectask.rb +0 -227
  565. data/vendor/plugins/rspec/lib/spec/rake/verify_rcov.rb +0 -52
  566. data/vendor/plugins/rspec/lib/spec/runner.rb +0 -213
  567. data/vendor/plugins/rspec/lib/spec/runner/backtrace_tweaker.rb +0 -56
  568. data/vendor/plugins/rspec/lib/spec/runner/class_and_arguments_parser.rb +0 -16
  569. data/vendor/plugins/rspec/lib/spec/runner/command_line.rb +0 -17
  570. data/vendor/plugins/rspec/lib/spec/runner/drb_command_line.rb +0 -20
  571. data/vendor/plugins/rspec/lib/spec/runner/example_group_runner.rb +0 -59
  572. data/vendor/plugins/rspec/lib/spec/runner/formatter/base_formatter.rb +0 -79
  573. data/vendor/plugins/rspec/lib/spec/runner/formatter/base_text_formatter.rb +0 -126
  574. data/vendor/plugins/rspec/lib/spec/runner/formatter/failing_example_groups_formatter.rb +0 -27
  575. data/vendor/plugins/rspec/lib/spec/runner/formatter/failing_examples_formatter.rb +0 -20
  576. data/vendor/plugins/rspec/lib/spec/runner/formatter/html_formatter.rb +0 -337
  577. data/vendor/plugins/rspec/lib/spec/runner/formatter/nested_text_formatter.rb +0 -65
  578. data/vendor/plugins/rspec/lib/spec/runner/formatter/profile_formatter.rb +0 -51
  579. data/vendor/plugins/rspec/lib/spec/runner/formatter/progress_bar_formatter.rb +0 -34
  580. data/vendor/plugins/rspec/lib/spec/runner/formatter/snippet_extractor.rb +0 -52
  581. data/vendor/plugins/rspec/lib/spec/runner/formatter/specdoc_formatter.rb +0 -39
  582. data/vendor/plugins/rspec/lib/spec/runner/formatter/story/html_formatter.rb +0 -174
  583. data/vendor/plugins/rspec/lib/spec/runner/formatter/story/plain_text_formatter.rb +0 -194
  584. data/vendor/plugins/rspec/lib/spec/runner/formatter/story/progress_bar_formatter.rb +0 -42
  585. data/vendor/plugins/rspec/lib/spec/runner/formatter/text_mate_formatter.rb +0 -16
  586. data/vendor/plugins/rspec/lib/spec/runner/heckle_runner.rb +0 -72
  587. data/vendor/plugins/rspec/lib/spec/runner/heckle_runner_unsupported.rb +0 -10
  588. data/vendor/plugins/rspec/lib/spec/runner/option_parser.rb +0 -205
  589. data/vendor/plugins/rspec/lib/spec/runner/options.rb +0 -320
  590. data/vendor/plugins/rspec/lib/spec/runner/reporter.rb +0 -167
  591. data/vendor/plugins/rspec/lib/spec/runner/spec_parser.rb +0 -71
  592. data/vendor/plugins/rspec/lib/spec/story.rb +0 -10
  593. data/vendor/plugins/rspec/lib/spec/story/extensions.rb +0 -3
  594. data/vendor/plugins/rspec/lib/spec/story/extensions/main.rb +0 -86
  595. data/vendor/plugins/rspec/lib/spec/story/extensions/regexp.rb +0 -9
  596. data/vendor/plugins/rspec/lib/spec/story/extensions/string.rb +0 -9
  597. data/vendor/plugins/rspec/lib/spec/story/given_scenario.rb +0 -14
  598. data/vendor/plugins/rspec/lib/spec/story/runner.rb +0 -59
  599. data/vendor/plugins/rspec/lib/spec/story/runner/plain_text_story_runner.rb +0 -48
  600. data/vendor/plugins/rspec/lib/spec/story/runner/scenario_collector.rb +0 -18
  601. data/vendor/plugins/rspec/lib/spec/story/runner/scenario_runner.rb +0 -54
  602. data/vendor/plugins/rspec/lib/spec/story/runner/story_mediator.rb +0 -137
  603. data/vendor/plugins/rspec/lib/spec/story/runner/story_parser.rb +0 -247
  604. data/vendor/plugins/rspec/lib/spec/story/runner/story_runner.rb +0 -70
  605. data/vendor/plugins/rspec/lib/spec/story/scenario.rb +0 -14
  606. data/vendor/plugins/rspec/lib/spec/story/step.rb +0 -70
  607. data/vendor/plugins/rspec/lib/spec/story/step_group.rb +0 -89
  608. data/vendor/plugins/rspec/lib/spec/story/step_mother.rb +0 -38
  609. data/vendor/plugins/rspec/lib/spec/story/story.rb +0 -39
  610. data/vendor/plugins/rspec/lib/spec/story/world.rb +0 -128
  611. data/vendor/plugins/rspec/lib/spec/version.rb +0 -13
  612. data/vendor/plugins/rspec/plugins/mock_frameworks/flexmock.rb +0 -23
  613. data/vendor/plugins/rspec/plugins/mock_frameworks/mocha.rb +0 -19
  614. data/vendor/plugins/rspec/plugins/mock_frameworks/rr.rb +0 -21
  615. data/vendor/plugins/rspec/plugins/mock_frameworks/rspec.rb +0 -20
  616. data/vendor/plugins/rspec/rake_tasks/examples.rake +0 -7
  617. data/vendor/plugins/rspec/rake_tasks/examples_with_rcov.rake +0 -9
  618. data/vendor/plugins/rspec/rake_tasks/failing_examples_with_html.rake +0 -9
  619. data/vendor/plugins/rspec/rake_tasks/verify_rcov.rake +0 -7
  620. data/vendor/plugins/rspec/rspec.gemspec +0 -22
  621. data/vendor/plugins/rspec/spec/README.jruby +0 -15
  622. data/vendor/plugins/rspec/spec/autotest/autotest_helper.rb +0 -6
  623. data/vendor/plugins/rspec/spec/autotest/autotest_matchers.rb +0 -47
  624. data/vendor/plugins/rspec/spec/autotest/discover_spec.rb +0 -19
  625. data/vendor/plugins/rspec/spec/autotest/rspec_spec.rb +0 -150
  626. data/vendor/plugins/rspec/spec/rspec_suite.rb +0 -6
  627. data/vendor/plugins/rspec/spec/ruby_forker.rb +0 -13
  628. data/vendor/plugins/rspec/spec/spec.opts +0 -6
  629. data/vendor/plugins/rspec/spec/spec/adapters/ruby_engine_spec.rb +0 -16
  630. data/vendor/plugins/rspec/spec/spec/example/configuration_spec.rb +0 -296
  631. data/vendor/plugins/rspec/spec/spec/example/example_group_class_definition_spec.rb +0 -48
  632. data/vendor/plugins/rspec/spec/spec/example/example_group_factory_spec.rb +0 -165
  633. data/vendor/plugins/rspec/spec/spec/example/example_group_methods_spec.rb +0 -584
  634. data/vendor/plugins/rspec/spec/spec/example/example_group_spec.rb +0 -683
  635. data/vendor/plugins/rspec/spec/spec/example/example_matcher_spec.rb +0 -96
  636. data/vendor/plugins/rspec/spec/spec/example/example_methods_spec.rb +0 -169
  637. data/vendor/plugins/rspec/spec/spec/example/example_runner_spec.rb +0 -194
  638. data/vendor/plugins/rspec/spec/spec/example/nested_example_group_spec.rb +0 -71
  639. data/vendor/plugins/rspec/spec/spec/example/pending_module_spec.rb +0 -145
  640. data/vendor/plugins/rspec/spec/spec/example/predicate_matcher_spec.rb +0 -21
  641. data/vendor/plugins/rspec/spec/spec/example/shared_example_group_spec.rb +0 -281
  642. data/vendor/plugins/rspec/spec/spec/example/subclassing_example_group_spec.rb +0 -25
  643. data/vendor/plugins/rspec/spec/spec/expectations/differs/default_spec.rb +0 -127
  644. data/vendor/plugins/rspec/spec/spec/expectations/extensions/object_spec.rb +0 -95
  645. data/vendor/plugins/rspec/spec/spec/expectations/fail_with_spec.rb +0 -71
  646. data/vendor/plugins/rspec/spec/spec/extensions/main_spec.rb +0 -71
  647. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_that_fails.rb +0 -10
  648. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_that_passes.rb +0 -10
  649. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_with_errors.rb +0 -10
  650. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_with_options_hash.rb +0 -13
  651. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_that_fails.rb +0 -10
  652. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_that_passes.rb +0 -10
  653. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_with_errors.rb +0 -10
  654. data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/testsuite_adapter_spec_with_test_unit.rb +0 -38
  655. data/vendor/plugins/rspec/spec/spec/interop/test/unit/spec_spec.rb +0 -52
  656. data/vendor/plugins/rspec/spec/spec/interop/test/unit/test_unit_spec_helper.rb +0 -14
  657. data/vendor/plugins/rspec/spec/spec/interop/test/unit/testcase_spec.rb +0 -49
  658. data/vendor/plugins/rspec/spec/spec/interop/test/unit/testsuite_adapter_spec.rb +0 -9
  659. data/vendor/plugins/rspec/spec/spec/matchers/be_close_spec.rb +0 -39
  660. data/vendor/plugins/rspec/spec/spec/matchers/be_spec.rb +0 -248
  661. data/vendor/plugins/rspec/spec/spec/matchers/change_spec.rb +0 -329
  662. data/vendor/plugins/rspec/spec/spec/matchers/description_generation_spec.rb +0 -153
  663. data/vendor/plugins/rspec/spec/spec/matchers/eql_spec.rb +0 -28
  664. data/vendor/plugins/rspec/spec/spec/matchers/equal_spec.rb +0 -28
  665. data/vendor/plugins/rspec/spec/spec/matchers/exist_spec.rb +0 -57
  666. data/vendor/plugins/rspec/spec/spec/matchers/handler_spec.rb +0 -150
  667. data/vendor/plugins/rspec/spec/spec/matchers/has_spec.rb +0 -63
  668. data/vendor/plugins/rspec/spec/spec/matchers/have_spec.rb +0 -394
  669. data/vendor/plugins/rspec/spec/spec/matchers/include_spec.rb +0 -64
  670. data/vendor/plugins/rspec/spec/spec/matchers/match_spec.rb +0 -37
  671. data/vendor/plugins/rspec/spec/spec/matchers/matcher_methods_spec.rb +0 -78
  672. data/vendor/plugins/rspec/spec/spec/matchers/mock_constraint_matchers_spec.rb +0 -24
  673. data/vendor/plugins/rspec/spec/spec/matchers/operator_matcher_spec.rb +0 -191
  674. data/vendor/plugins/rspec/spec/spec/matchers/raise_error_spec.rb +0 -315
  675. data/vendor/plugins/rspec/spec/spec/matchers/respond_to_spec.rb +0 -54
  676. data/vendor/plugins/rspec/spec/spec/matchers/satisfy_spec.rb +0 -36
  677. data/vendor/plugins/rspec/spec/spec/matchers/simple_matcher_spec.rb +0 -93
  678. data/vendor/plugins/rspec/spec/spec/matchers/throw_symbol_spec.rb +0 -54
  679. data/vendor/plugins/rspec/spec/spec/mocks/any_number_of_times_spec.rb +0 -36
  680. data/vendor/plugins/rspec/spec/spec/mocks/argument_expectation_spec.rb +0 -23
  681. data/vendor/plugins/rspec/spec/spec/mocks/at_least_spec.rb +0 -97
  682. data/vendor/plugins/rspec/spec/spec/mocks/at_most_spec.rb +0 -93
  683. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_10260_spec.rb +0 -8
  684. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_10263_spec.rb +0 -24
  685. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_11545_spec.rb +0 -33
  686. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_15719_spec.rb +0 -30
  687. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_496.rb +0 -17
  688. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_7611_spec.rb +0 -19
  689. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_7805_spec.rb +0 -22
  690. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_8165_spec.rb +0 -31
  691. data/vendor/plugins/rspec/spec/spec/mocks/bug_report_8302_spec.rb +0 -26
  692. data/vendor/plugins/rspec/spec/spec/mocks/failing_mock_argument_constraints_spec.rb +0 -95
  693. data/vendor/plugins/rspec/spec/spec/mocks/hash_including_matcher_spec.rb +0 -53
  694. data/vendor/plugins/rspec/spec/spec/mocks/mock_ordering_spec.rb +0 -84
  695. data/vendor/plugins/rspec/spec/spec/mocks/mock_space_spec.rb +0 -54
  696. data/vendor/plugins/rspec/spec/spec/mocks/mock_spec.rb +0 -555
  697. data/vendor/plugins/rspec/spec/spec/mocks/multiple_return_value_spec.rb +0 -113
  698. data/vendor/plugins/rspec/spec/spec/mocks/nil_expectation_warning_spec.rb +0 -53
  699. data/vendor/plugins/rspec/spec/spec/mocks/null_object_mock_spec.rb +0 -54
  700. data/vendor/plugins/rspec/spec/spec/mocks/once_counts_spec.rb +0 -53
  701. data/vendor/plugins/rspec/spec/spec/mocks/options_hash_spec.rb +0 -35
  702. data/vendor/plugins/rspec/spec/spec/mocks/partial_mock_spec.rb +0 -149
  703. data/vendor/plugins/rspec/spec/spec/mocks/partial_mock_using_mocks_directly_spec.rb +0 -66
  704. data/vendor/plugins/rspec/spec/spec/mocks/passing_mock_argument_constraints_spec.rb +0 -130
  705. data/vendor/plugins/rspec/spec/spec/mocks/precise_counts_spec.rb +0 -52
  706. data/vendor/plugins/rspec/spec/spec/mocks/record_messages_spec.rb +0 -26
  707. data/vendor/plugins/rspec/spec/spec/mocks/stub_spec.rb +0 -188
  708. data/vendor/plugins/rspec/spec/spec/mocks/twice_counts_spec.rb +0 -67
  709. data/vendor/plugins/rspec/spec/spec/package/bin_spec_spec.rb +0 -22
  710. data/vendor/plugins/rspec/spec/spec/runner/class_and_argument_parser_spec.rb +0 -23
  711. data/vendor/plugins/rspec/spec/spec/runner/command_line_spec.rb +0 -141
  712. data/vendor/plugins/rspec/spec/spec/runner/drb_command_line_spec.rb +0 -97
  713. data/vendor/plugins/rspec/spec/spec/runner/empty_file.txt +0 -0
  714. data/vendor/plugins/rspec/spec/spec/runner/examples.txt +0 -2
  715. data/vendor/plugins/rspec/spec/spec/runner/failed.txt +0 -3
  716. data/vendor/plugins/rspec/spec/spec/runner/formatter/base_formatter_spec.rb +0 -112
  717. data/vendor/plugins/rspec/spec/spec/runner/formatter/failing_example_groups_formatter_spec.rb +0 -45
  718. data/vendor/plugins/rspec/spec/spec/runner/formatter/failing_examples_formatter_spec.rb +0 -33
  719. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.4.html +0 -365
  720. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.5-jruby.html +0 -387
  721. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.5.html +0 -371
  722. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.6-jruby.html +0 -381
  723. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.6.html +0 -370
  724. data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatter_spec.rb +0 -61
  725. data/vendor/plugins/rspec/spec/spec/runner/formatter/nested_text_formatter_spec.rb +0 -318
  726. data/vendor/plugins/rspec/spec/spec/runner/formatter/profile_formatter_spec.rb +0 -65
  727. data/vendor/plugins/rspec/spec/spec/runner/formatter/progress_bar_formatter_spec.rb +0 -155
  728. data/vendor/plugins/rspec/spec/spec/runner/formatter/snippet_extractor_spec.rb +0 -18
  729. data/vendor/plugins/rspec/spec/spec/runner/formatter/spec_mate_formatter_spec.rb +0 -103
  730. data/vendor/plugins/rspec/spec/spec/runner/formatter/specdoc_formatter_spec.rb +0 -159
  731. data/vendor/plugins/rspec/spec/spec/runner/formatter/story/html_formatter_spec.rb +0 -135
  732. data/vendor/plugins/rspec/spec/spec/runner/formatter/story/plain_text_formatter_spec.rb +0 -600
  733. data/vendor/plugins/rspec/spec/spec/runner/formatter/story/progress_bar_formatter_spec.rb +0 -82
  734. data/vendor/plugins/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.4.html +0 -365
  735. data/vendor/plugins/rspec/spec/spec/runner/formatter/text_mate_formatted-1.8.6.html +0 -370
  736. data/vendor/plugins/rspec/spec/spec/runner/heckle_runner_spec.rb +0 -78
  737. data/vendor/plugins/rspec/spec/spec/runner/heckler_spec.rb +0 -13
  738. data/vendor/plugins/rspec/spec/spec/runner/noisy_backtrace_tweaker_spec.rb +0 -45
  739. data/vendor/plugins/rspec/spec/spec/runner/option_parser_spec.rb +0 -421
  740. data/vendor/plugins/rspec/spec/spec/runner/options_spec.rb +0 -450
  741. data/vendor/plugins/rspec/spec/spec/runner/output_one_time_fixture.rb +0 -7
  742. data/vendor/plugins/rspec/spec/spec/runner/output_one_time_fixture_runner.rb +0 -8
  743. data/vendor/plugins/rspec/spec/spec/runner/output_one_time_spec.rb +0 -16
  744. data/vendor/plugins/rspec/spec/spec/runner/quiet_backtrace_tweaker_spec.rb +0 -62
  745. data/vendor/plugins/rspec/spec/spec/runner/reporter_spec.rb +0 -238
  746. data/vendor/plugins/rspec/spec/spec/runner/resources/a_bar.rb +0 -0
  747. data/vendor/plugins/rspec/spec/spec/runner/resources/a_foo.rb +0 -0
  748. data/vendor/plugins/rspec/spec/spec/runner/resources/a_spec.rb +0 -1
  749. data/vendor/plugins/rspec/spec/spec/runner/spec.opts +0 -2
  750. data/vendor/plugins/rspec/spec/spec/runner/spec_drb.opts +0 -1
  751. data/vendor/plugins/rspec/spec/spec/runner/spec_parser/spec_parser_fixture.rb +0 -70
  752. data/vendor/plugins/rspec/spec/spec/runner/spec_parser_spec.rb +0 -85
  753. data/vendor/plugins/rspec/spec/spec/runner/spec_spaced.opts +0 -2
  754. data/vendor/plugins/rspec/spec/spec/runner_spec.rb +0 -11
  755. data/vendor/plugins/rspec/spec/spec/spec_classes.rb +0 -133
  756. data/vendor/plugins/rspec/spec/spec/story/builders.rb +0 -46
  757. data/vendor/plugins/rspec/spec/spec/story/extensions/main_spec.rb +0 -161
  758. data/vendor/plugins/rspec/spec/spec/story/extensions_spec.rb +0 -14
  759. data/vendor/plugins/rspec/spec/spec/story/given_scenario_spec.rb +0 -27
  760. data/vendor/plugins/rspec/spec/spec/story/runner/plain_text_story_runner_spec.rb +0 -90
  761. data/vendor/plugins/rspec/spec/spec/story/runner/scenario_collector_spec.rb +0 -27
  762. data/vendor/plugins/rspec/spec/spec/story/runner/scenario_runner_spec.rb +0 -214
  763. data/vendor/plugins/rspec/spec/spec/story/runner/story_mediator_spec.rb +0 -143
  764. data/vendor/plugins/rspec/spec/spec/story/runner/story_parser_spec.rb +0 -401
  765. data/vendor/plugins/rspec/spec/spec/story/runner/story_runner_spec.rb +0 -294
  766. data/vendor/plugins/rspec/spec/spec/story/runner_spec.rb +0 -93
  767. data/vendor/plugins/rspec/spec/spec/story/scenario_spec.rb +0 -18
  768. data/vendor/plugins/rspec/spec/spec/story/step_group_spec.rb +0 -157
  769. data/vendor/plugins/rspec/spec/spec/story/step_mother_spec.rb +0 -84
  770. data/vendor/plugins/rspec/spec/spec/story/step_spec.rb +0 -272
  771. data/vendor/plugins/rspec/spec/spec/story/story_helper.rb +0 -2
  772. data/vendor/plugins/rspec/spec/spec/story/story_spec.rb +0 -84
  773. data/vendor/plugins/rspec/spec/spec/story/world_spec.rb +0 -423
  774. data/vendor/plugins/rspec/spec/spec_helper.rb +0 -77
  775. data/vendor/plugins/rspec/stories/all.rb +0 -5
  776. data/vendor/plugins/rspec/stories/configuration/before_blocks.story +0 -21
  777. data/vendor/plugins/rspec/stories/configuration/stories.rb +0 -7
  778. data/vendor/plugins/rspec/stories/example_groups/autogenerated_docstrings +0 -45
  779. data/vendor/plugins/rspec/stories/example_groups/example_group_with_should_methods +0 -17
  780. data/vendor/plugins/rspec/stories/example_groups/nested_groups +0 -17
  781. data/vendor/plugins/rspec/stories/example_groups/output +0 -25
  782. data/vendor/plugins/rspec/stories/example_groups/stories.rb +0 -7
  783. data/vendor/plugins/rspec/stories/helper.rb +0 -6
  784. data/vendor/plugins/rspec/stories/interop/examples_and_tests_together +0 -30
  785. data/vendor/plugins/rspec/stories/interop/stories.rb +0 -7
  786. data/vendor/plugins/rspec/stories/interop/test_case_with_should_methods +0 -17
  787. data/vendor/plugins/rspec/stories/mock_framework_integration/stories.rb +0 -7
  788. data/vendor/plugins/rspec/stories/mock_framework_integration/use_flexmock.story +0 -9
  789. data/vendor/plugins/rspec/stories/pending_stories/README +0 -3
  790. data/vendor/plugins/rspec/stories/resources/helpers/cmdline.rb +0 -9
  791. data/vendor/plugins/rspec/stories/resources/helpers/story_helper.rb +0 -16
  792. data/vendor/plugins/rspec/stories/resources/matchers/smart_match.rb +0 -37
  793. data/vendor/plugins/rspec/stories/resources/spec/before_blocks_example.rb +0 -32
  794. data/vendor/plugins/rspec/stories/resources/spec/example_group_with_should_methods.rb +0 -12
  795. data/vendor/plugins/rspec/stories/resources/spec/simple_spec.rb +0 -8
  796. data/vendor/plugins/rspec/stories/resources/spec/spec_with_flexmock.rb +0 -18
  797. data/vendor/plugins/rspec/stories/resources/steps/running_rspec.rb +0 -50
  798. data/vendor/plugins/rspec/stories/resources/stories/failing_story.rb +0 -15
  799. data/vendor/plugins/rspec/stories/resources/test/spec_and_test_together.rb +0 -57
  800. data/vendor/plugins/rspec/stories/resources/test/test_case_with_should_methods.rb +0 -30
  801. data/vendor/plugins/rspec/stories/stories/multiline_steps.story +0 -23
  802. data/vendor/plugins/rspec/stories/stories/steps/multiline_steps.rb +0 -13
  803. data/vendor/plugins/rspec/stories/stories/stories.rb +0 -6
  804. data/vendor/plugins/rspec/story_server/prototype/javascripts/builder.js +0 -136
  805. data/vendor/plugins/rspec/story_server/prototype/javascripts/controls.js +0 -972
  806. data/vendor/plugins/rspec/story_server/prototype/javascripts/dragdrop.js +0 -976
  807. data/vendor/plugins/rspec/story_server/prototype/javascripts/effects.js +0 -1117
  808. data/vendor/plugins/rspec/story_server/prototype/javascripts/prototype.js +0 -4140
  809. data/vendor/plugins/rspec/story_server/prototype/javascripts/rspec.js +0 -149
  810. data/vendor/plugins/rspec/story_server/prototype/javascripts/scriptaculous.js +0 -58
  811. data/vendor/plugins/rspec/story_server/prototype/javascripts/slider.js +0 -276
  812. data/vendor/plugins/rspec/story_server/prototype/javascripts/sound.js +0 -55
  813. data/vendor/plugins/rspec/story_server/prototype/javascripts/unittest.js +0 -568
  814. data/vendor/plugins/rspec/story_server/prototype/lib/server.rb +0 -24
  815. data/vendor/plugins/rspec/story_server/prototype/stories.html +0 -176
  816. data/vendor/plugins/rspec/story_server/prototype/stylesheets/rspec.css +0 -136
  817. data/vendor/plugins/rspec/story_server/prototype/stylesheets/test.css +0 -90
  818. data/vendor/plugins/will_paginate/.manifest +0 -49
  819. data/vendor/plugins/will_paginate/CHANGELOG.rdoc +0 -110
  820. data/vendor/plugins/will_paginate/LICENSE +0 -18
  821. data/vendor/plugins/will_paginate/README.rdoc +0 -107
  822. data/vendor/plugins/will_paginate/Rakefile +0 -62
  823. data/vendor/plugins/will_paginate/examples/apple-circle.gif +0 -0
  824. data/vendor/plugins/will_paginate/examples/index.haml +0 -69
  825. data/vendor/plugins/will_paginate/examples/index.html +0 -92
  826. data/vendor/plugins/will_paginate/examples/pagination.css +0 -90
  827. data/vendor/plugins/will_paginate/examples/pagination.sass +0 -91
  828. data/vendor/plugins/will_paginate/init.rb +0 -1
  829. data/vendor/plugins/will_paginate/lib/will_paginate.rb +0 -82
  830. data/vendor/plugins/will_paginate/lib/will_paginate/array.rb +0 -16
  831. data/vendor/plugins/will_paginate/lib/will_paginate/collection.rb +0 -146
  832. data/vendor/plugins/will_paginate/lib/will_paginate/core_ext.rb +0 -32
  833. data/vendor/plugins/will_paginate/lib/will_paginate/finder.rb +0 -260
  834. data/vendor/plugins/will_paginate/lib/will_paginate/named_scope.rb +0 -170
  835. data/vendor/plugins/will_paginate/lib/will_paginate/named_scope_patch.rb +0 -37
  836. data/vendor/plugins/will_paginate/lib/will_paginate/version.rb +0 -9
  837. data/vendor/plugins/will_paginate/lib/will_paginate/view_helpers.rb +0 -383
  838. data/vendor/plugins/will_paginate/test/boot.rb +0 -21
  839. data/vendor/plugins/will_paginate/test/collection_test.rb +0 -143
  840. data/vendor/plugins/will_paginate/test/console +0 -8
  841. data/vendor/plugins/will_paginate/test/database.yml +0 -22
  842. data/vendor/plugins/will_paginate/test/finder_test.rb +0 -476
  843. data/vendor/plugins/will_paginate/test/fixtures/admin.rb +0 -3
  844. data/vendor/plugins/will_paginate/test/fixtures/developer.rb +0 -14
  845. data/vendor/plugins/will_paginate/test/fixtures/developers_projects.yml +0 -13
  846. data/vendor/plugins/will_paginate/test/fixtures/project.rb +0 -15
  847. data/vendor/plugins/will_paginate/test/fixtures/projects.yml +0 -6
  848. data/vendor/plugins/will_paginate/test/fixtures/replies.yml +0 -29
  849. data/vendor/plugins/will_paginate/test/fixtures/reply.rb +0 -7
  850. data/vendor/plugins/will_paginate/test/fixtures/schema.rb +0 -38
  851. data/vendor/plugins/will_paginate/test/fixtures/topic.rb +0 -10
  852. data/vendor/plugins/will_paginate/test/fixtures/topics.yml +0 -30
  853. data/vendor/plugins/will_paginate/test/fixtures/user.rb +0 -2
  854. data/vendor/plugins/will_paginate/test/fixtures/users.yml +0 -35
  855. data/vendor/plugins/will_paginate/test/helper.rb +0 -37
  856. data/vendor/plugins/will_paginate/test/lib/activerecord_test_case.rb +0 -36
  857. data/vendor/plugins/will_paginate/test/lib/activerecord_test_connector.rb +0 -73
  858. data/vendor/plugins/will_paginate/test/lib/load_fixtures.rb +0 -11
  859. data/vendor/plugins/will_paginate/test/lib/view_test_process.rb +0 -165
  860. data/vendor/plugins/will_paginate/test/tasks.rake +0 -59
  861. data/vendor/plugins/will_paginate/test/view_test.rb +0 -363
  862. data/vendor/plugins/will_paginate/will_paginate.gemspec +0 -22
@@ -1,27 +0,0 @@
1
- require File.dirname(__FILE__) + '/../story_helper'
2
-
3
- module Spec
4
- module Story
5
- module Runner
6
- describe ScenarioCollector do
7
- it 'should construct scenarios with the supplied story' do
8
- # given
9
- story = stub_everything('story')
10
- scenario_collector = ScenarioCollector.new(story)
11
-
12
- # when
13
- scenario_collector.Scenario 'scenario1' do end
14
- scenario_collector.Scenario 'scenario2' do end
15
- scenarios = scenario_collector.scenarios
16
-
17
- # then
18
- scenario_collector.should have(2).scenarios
19
- scenarios.first.name.should == 'scenario1'
20
- scenarios.first.story.should equal(story)
21
- scenarios.last.name.should == 'scenario2'
22
- scenarios.last.story.should equal(story)
23
- end
24
- end
25
- end
26
- end
27
- end
@@ -1,214 +0,0 @@
1
- require File.dirname(__FILE__) + '/../story_helper'
2
-
3
- module Spec
4
- module Story
5
- module Runner
6
- describe ScenarioRunner do
7
- it 'should run a scenario in its story' do
8
- # given
9
- world = stub_everything
10
- scenario_runner = ScenarioRunner.new
11
- $answer = nil
12
- story = Story.new 'story', 'narrative' do
13
- @answer = 42 # this should be available to the scenario
14
- end
15
- scenario = Scenario.new story, 'scenario' do
16
- $answer = @answer
17
- end
18
-
19
- # when
20
- scenario_runner.run(scenario, world)
21
-
22
- # then
23
- $answer.should == 42
24
- end
25
-
26
- it 'should allow scenarios to share methods' do
27
- # given
28
- world = stub_everything
29
- $shared_invoked = 0
30
- story = Story.new 'story', 'narrative' do
31
- def shared
32
- $shared_invoked += 1
33
- end
34
- end
35
- scenario1 = Scenario.new story, 'scenario1' do
36
- shared()
37
- end
38
- scenario2 = Scenario.new story, 'scenario2' do
39
- shared()
40
- end
41
- scenario_runner = ScenarioRunner.new
42
-
43
- # when
44
- scenario_runner.run(scenario1, world)
45
- scenario_runner.run(scenario2, world)
46
-
47
- # then
48
- $shared_invoked.should == 2
49
- end
50
-
51
- it 'should notify listeners when a scenario starts' do
52
- # given
53
- world = stub_everything
54
- story = Story.new 'story', 'narrative' do end
55
- scenario = Scenario.new story, 'scenario1' do
56
- # succeeds
57
- end
58
- scenario_runner = ScenarioRunner.new
59
- mock_listener1 = stub_everything('listener1')
60
- mock_listener2 = stub_everything('listener2')
61
- scenario_runner.add_listener(mock_listener1)
62
- scenario_runner.add_listener(mock_listener2)
63
-
64
- # expect
65
- mock_listener1.should_receive(:scenario_started).with('story', 'scenario1')
66
- mock_listener2.should_receive(:scenario_started).with('story', 'scenario1')
67
-
68
- # when
69
- scenario_runner.run(scenario, world)
70
-
71
- # then
72
- end
73
- describe "when a scenario succeeds" do
74
- before(:each) do
75
- # given
76
- @world = stub_everything('world')
77
- @story = Story.new 'story', 'narrative' do end
78
- @scenario = Scenario.new @story, 'scenario1' do
79
- # succeeds
80
- end
81
- @scenario_runner = ScenarioRunner.new
82
- end
83
-
84
- it 'should notify listeners' do
85
- #given
86
- mock_listener1 = stub_everything('listener1')
87
- mock_listener2 = stub_everything('listener2')
88
- @scenario_runner.add_listener(mock_listener1)
89
- @scenario_runner.add_listener(mock_listener2)
90
-
91
- # expect
92
- mock_listener1.should_receive(:scenario_succeeded).with('story', 'scenario1')
93
- mock_listener2.should_receive(:scenario_succeeded).with('story', 'scenario1')
94
-
95
- # when
96
- @scenario_runner.run(@scenario, @world)
97
-
98
- # then
99
- end
100
-
101
- it "should return true" do
102
- #when
103
- success = @scenario_runner.run(@scenario, @world)
104
-
105
- #then
106
- success.should == true
107
- end
108
- end
109
-
110
- describe "when a scenario raises an error (other than a pending error)" do
111
- before(:each) do
112
- # given
113
- @error = RuntimeError.new('oops')
114
- @story = Story.new 'title', 'narrative' do end
115
- @scenario = Scenario.new @story, 'scenario1' do
116
- end
117
- @scenario_runner = ScenarioRunner.new
118
- @world = stub_everything
119
-
120
- # expect
121
- @world.should_receive(:errors).twice.and_return([@error, @error])
122
- end
123
-
124
- it 'should notify listeners ONCE' do
125
- #given
126
- mock_listener = stub_everything('listener')
127
- @scenario_runner.add_listener(mock_listener)
128
-
129
- #expect
130
- mock_listener.should_receive(:scenario_failed).with('title', 'scenario1', @error).once
131
-
132
- # when
133
- @scenario_runner.run @scenario, @world
134
-
135
- # then
136
- end
137
-
138
- it "should return false" do
139
- # when
140
- success = @scenario_runner.run @scenario, @world
141
-
142
- # then
143
- success.should == false
144
- end
145
-
146
-
147
- end
148
-
149
- describe "when a scenario is pending" do
150
- before(:each) do
151
- # given
152
- @pending_error = Spec::Example::ExamplePendingError.new('todo')
153
- @story = Story.new 'title', 'narrative' do end
154
- @scenario = Scenario.new @story, 'scenario1' do
155
- end
156
- @scenario_runner = ScenarioRunner.new
157
- @world = stub_everything
158
-
159
- # expect
160
- @world.should_receive(:errors).twice.and_return([@pending_error, @pending_error])
161
- end
162
-
163
- it 'should notify listeners' do
164
- #given
165
- mock_listener = mock('listener')
166
- @scenario_runner.add_listener(mock_listener)
167
-
168
- # expect
169
- mock_listener.should_receive(:scenario_started).with('title', 'scenario1')
170
- mock_listener.should_receive(:scenario_pending).with('title', 'scenario1', 'todo').once
171
-
172
- # when
173
- @scenario_runner.run @scenario, @world
174
-
175
- # then
176
- end
177
-
178
- it "should return true" do
179
- # when
180
- success = @scenario_runner.run @scenario, @world
181
-
182
- # then
183
- success.should == true
184
- end
185
- end
186
-
187
- describe "when a scenario has an empty body" do
188
- before(:each) do
189
- @story = Story.new 'title', 'narrative' do end
190
- @scenario = Scenario.new @story, 'scenario'
191
- @scenario_runner = ScenarioRunner.new
192
- @world = stub_everything
193
- end
194
-
195
- it "should mark the scenario as pending" do
196
- mock_listener = stub('listener', :scenario_started => true)
197
- @scenario_runner.add_listener mock_listener
198
-
199
- mock_listener.should_receive(:scenario_pending).with('title', 'scenario', '')
200
- @scenario_runner.run @scenario, @world
201
- end
202
-
203
- it "should return true" do
204
- # when
205
- success = @scenario_runner.run @scenario, @world
206
-
207
- # then
208
- success.should == true
209
- end
210
- end
211
- end
212
- end
213
- end
214
- end
@@ -1,143 +0,0 @@
1
- require File.dirname(__FILE__) + '/../story_helper'
2
-
3
- module Spec
4
- module Story
5
- module Runner
6
-
7
- describe StoryMediator do
8
- before(:each) do
9
- $story_mediator_spec_value = nil
10
- @step_group = StepGroup.new
11
- @step_group.create_matcher(:given, "given") { $story_mediator_spec_value = "given matched" }
12
- @step_group.create_matcher(:when, "when") { $story_mediator_spec_value = "when matched" }
13
- @step_group.create_matcher(:then, "then") { $story_mediator_spec_value = "then matched" }
14
-
15
- @scenario_runner = ScenarioRunner.new
16
- @runner = StoryRunner.new @scenario_runner
17
- @mediator = StoryMediator.new @step_group, @runner
18
- end
19
-
20
- def run_stories
21
- @mediator.run_stories
22
- @runner.run_stories
23
- end
24
-
25
- it "should have no stories" do
26
- @mediator.stories.should be_empty
27
- end
28
-
29
- it "should create two stories" do
30
- @mediator.create_story "story title", "story narrative"
31
- @mediator.create_story "story title 2", "story narrative 2"
32
- run_stories
33
-
34
- @runner.should have(2).stories
35
- @runner.stories.first.title.should == "story title"
36
- @runner.stories.first.narrative.should == "story narrative"
37
- @runner.stories.last.title.should == "story title 2"
38
- @runner.stories.last.narrative.should == "story narrative 2"
39
- end
40
-
41
- it "should create a scenario" do
42
- @mediator.create_story "title", "narrative"
43
- @mediator.create_scenario "scenario name"
44
- run_stories
45
-
46
- @runner.should have(1).scenarios
47
- @runner.scenarios.first.name.should == "scenario name"
48
- @runner.scenarios.first.story.should == @runner.stories.first
49
- end
50
-
51
- it "should create a given scenario step if one matches" do
52
- pending("need to untangle the dark mysteries of the story runner - something needs to get stubbed here") do
53
- story = @mediator.create_story "title", "narrative"
54
- @mediator.create_scenario "previous scenario"
55
- @mediator.create_scenario "current scenario"
56
- @mediator.create_given_scenario "previous scenario"
57
- run_stories
58
-
59
- $story_mediator_spec_value.should == "previous scenario matched"
60
- end
61
- end
62
-
63
- it "should create a given step if one matches" do
64
- @mediator.create_story "title", "narrative"
65
- @mediator.create_scenario "scenario"
66
- @mediator.create_given "given"
67
- run_stories
68
-
69
- $story_mediator_spec_value.should == "given matched"
70
- end
71
-
72
- it "should create a pending step if no given step matches" do
73
- @mediator.create_story "title", "narrative"
74
- @mediator.create_scenario "scenario"
75
- @mediator.create_given "no match"
76
- mock_listener = stub_everything("listener")
77
- mock_listener.should_receive(:scenario_pending).with("title", "scenario", "Unimplemented step: no match")
78
- @scenario_runner.add_listener mock_listener
79
- run_stories
80
- end
81
-
82
- it "should create a when step if one matches" do
83
- @mediator.create_story "title", "narrative"
84
- @mediator.create_scenario "scenario"
85
- @mediator.create_when "when"
86
- run_stories
87
-
88
- $story_mediator_spec_value.should == "when matched"
89
- end
90
-
91
- it "should create a pending step if no when step matches" do
92
- @mediator.create_story "title", "narrative"
93
- @mediator.create_scenario "scenario"
94
- @mediator.create_when "no match"
95
- mock_listener = stub_everything("listener")
96
- mock_listener.should_receive(:scenario_pending).with("title", "scenario", "Unimplemented step: no match")
97
- @scenario_runner.add_listener mock_listener
98
- run_stories
99
- end
100
-
101
- it "should create a then step if one matches" do
102
- @mediator.create_story "title", "narrative"
103
- @mediator.create_scenario "scenario"
104
- @mediator.create_then "then"
105
- run_stories
106
-
107
- $story_mediator_spec_value.should == "then matched"
108
- end
109
-
110
- it "should create a pending step if no 'then' step matches" do
111
- @mediator.create_story "title", "narrative"
112
- @mediator.create_scenario "scenario"
113
- @mediator.create_then "no match"
114
- mock_listener = stub_everything("listener")
115
- mock_listener.should_receive(:scenario_pending).with("title", "scenario", "Unimplemented step: no match")
116
- @scenario_runner.add_listener mock_listener
117
- run_stories
118
- end
119
-
120
- it "should pass options to the stories it creates" do
121
- @mediator = StoryMediator.new @step_group, @runner, :foo => :bar
122
- @mediator.create_story "story title", "story narrative"
123
-
124
- run_stories
125
-
126
- @runner.stories.first[:foo].should == :bar
127
- end
128
-
129
- it "should description" do
130
- @mediator = StoryMediator.new @step_group, @runner, :foo => :bar
131
- @mediator.create_story "title", "narrative"
132
- @mediator.create_scenario "scenario"
133
- @mediator.create_given "something"
134
- given = @mediator.last_step
135
- @mediator.add_to_last " else"
136
- given.name.should == "something else"
137
- end
138
-
139
- end
140
-
141
- end
142
- end
143
- end
@@ -1,401 +0,0 @@
1
- require File.dirname(__FILE__) + '/../story_helper'
2
-
3
- module Spec
4
- module Story
5
- module Runner
6
-
7
- describe StoryParser do
8
- before(:each) do
9
- @story_mediator = mock("story_mediator")
10
- @parser = StoryParser.new(@story_mediator)
11
- end
12
-
13
- it "should parse no lines" do
14
- @parser.parse([])
15
- end
16
-
17
- it "should ignore text before the first Story: begins" do
18
- @story_mediator.should_not_receive(:create_scenario)
19
- @story_mediator.should_not_receive(:create_given)
20
- @story_mediator.should_not_receive(:create_when)
21
- @story_mediator.should_not_receive(:create_then)
22
- @story_mediator.should_receive(:create_story).with("simple addition", "")
23
- @parser.parse(["Here is a bunch of text", "about a calculator and all the things", "that it will do", "Story: simple addition"])
24
- end
25
-
26
- it "should create a story" do
27
- @story_mediator.should_receive(:create_story).with("simple addition", "")
28
- @parser.parse(["Story: simple addition"])
29
- end
30
-
31
- it "should create a story when line has leading spaces" do
32
- @story_mediator.should_receive(:create_story).with("simple addition", "")
33
- @parser.parse([" Story: simple addition"])
34
- end
35
-
36
- it "should add a one line narrative to the story" do
37
- @story_mediator.should_receive(:create_story).with("simple addition","narrative")
38
- @parser.parse(["Story: simple addition","narrative"])
39
- end
40
-
41
- it "should add a multi line narrative to the story" do
42
- @story_mediator.should_receive(:create_story).with("simple addition","narrative line 1\nline 2\nline 3")
43
- @parser.parse(["Story: simple addition","narrative line 1", "line 2", "line 3"])
44
- end
45
-
46
- it "should exclude blank lines from the narrative" do
47
- @story_mediator.should_receive(:create_story).with("simple addition","narrative line 1\nline 2")
48
- @parser.parse(["Story: simple addition","narrative line 1", "", "line 2"])
49
- end
50
-
51
- it "should exclude Scenario from the narrative" do
52
- @story_mediator.should_receive(:create_story).with("simple addition","narrative line 1\nline 2")
53
- @story_mediator.should_receive(:create_scenario)
54
- @parser.parse(["Story: simple addition","narrative line 1", "line 2", "Scenario: add one plus one"])
55
- end
56
-
57
- end
58
-
59
- describe StoryParser, "in Story state" do
60
- before(:each) do
61
- @story_mediator = mock("story_mediator")
62
- @parser = StoryParser.new(@story_mediator)
63
- @story_mediator.stub!(:create_story)
64
- end
65
-
66
- it "should create a second Story for Story" do
67
- @story_mediator.should_receive(:create_story).with("number two","")
68
- @parser.parse(["Story: s", "Story: number two"])
69
- end
70
-
71
- it "should include And in the narrative" do
72
- @story_mediator.should_receive(:create_story).with("s","And foo")
73
- @story_mediator.should_receive(:create_scenario).with("bar")
74
- @parser.parse(["Story: s", "And foo", "Scenario: bar"])
75
- end
76
-
77
- it "should create a Scenario for Scenario" do
78
- @story_mediator.should_receive(:create_scenario).with("number two")
79
- @parser.parse(["Story: s", "Scenario: number two"])
80
- end
81
-
82
- it "should include Given in the narrative" do
83
- @story_mediator.should_receive(:create_story).with("s","Given foo")
84
- @story_mediator.should_receive(:create_scenario).with("bar")
85
- @parser.parse(["Story: s", "Given foo", "Scenario: bar"])
86
- end
87
-
88
- it "should include Given: in the narrative" do
89
- @story_mediator.should_receive(:create_story).with("s","Given: foo")
90
- @story_mediator.should_receive(:create_scenario).with("bar")
91
- @parser.parse(["Story: s", "Given: foo", "Scenario: bar"])
92
- end
93
-
94
- it "should include When in the narrative" do
95
- @story_mediator.should_receive(:create_story).with("s","When foo")
96
- @story_mediator.should_receive(:create_scenario).with("bar")
97
- @parser.parse(["Story: s", "When foo", "Scenario: bar"])
98
- end
99
-
100
- it "should include Then in the narrative" do
101
- @story_mediator.should_receive(:create_story).with("s","Then foo")
102
- @story_mediator.should_receive(:create_scenario).with("bar")
103
- @parser.parse(["Story: s", "Then foo", "Scenario: bar"])
104
- end
105
-
106
- it "should include other in the story" do
107
- @story_mediator.should_receive(:create_story).with("s","narrative")
108
- @parser.parse(["Story: s", "narrative"])
109
- end
110
- end
111
-
112
- describe StoryParser, "in Scenario state" do
113
- before(:each) do
114
- @story_mediator = mock("story_mediator")
115
- @parser = StoryParser.new(@story_mediator)
116
- @story_mediator.stub!(:create_story)
117
- @story_mediator.stub!(:create_scenario)
118
- end
119
-
120
- it "should create a Story for Story" do
121
- @story_mediator.should_receive(:create_story).with("number two","")
122
- @parser.parse(["Story: s", "Scenario: s", "Story: number two"])
123
- end
124
-
125
- it "should create a Scenario for Scenario" do
126
- @story_mediator.should_receive(:create_scenario).with("number two")
127
- @parser.parse(["Story: s", "Scenario: s", "Scenario: number two"])
128
- end
129
-
130
- it "should raise for And" do
131
- lambda {
132
- @parser.parse(["Story: s", "Scenario: s", "And second"])
133
- }.should raise_error(IllegalStepError, /^Illegal attempt to create a And after a Scenario/)
134
- end
135
-
136
- it "should create a Given for Given" do
137
- @story_mediator.should_receive(:create_given).with("gift")
138
- @parser.parse(["Story: s", "Scenario: s", "Given gift"])
139
- end
140
-
141
- it "should create a Given for Given:" do
142
- @story_mediator.should_receive(:create_given).with("gift")
143
- @parser.parse(["Story: s", "Scenario: s", "Given: gift"])
144
- end
145
-
146
- it "should create a GivenScenario for GivenScenario" do
147
- @story_mediator.should_receive(:create_given_scenario).with("previous")
148
- @parser.parse(["Story: s", "Scenario: s", "GivenScenario previous"])
149
- end
150
-
151
- it "should create a GivenScenario for GivenScenario:" do
152
- @story_mediator.should_receive(:create_given_scenario).with("previous")
153
- @parser.parse(["Story: s", "Scenario: s", "GivenScenario: previous"])
154
- end
155
-
156
- it "should transition to Given state after GivenScenario" do
157
- @story_mediator.stub!(:create_given_scenario)
158
- @parser.parse(["Story: s", "Scenario: s", "GivenScenario previous"])
159
- @parser.instance_eval{@state}.should be_an_instance_of(StoryParser::GivenState)
160
- end
161
-
162
- it "should transition to Given state after GivenScenario:" do
163
- @story_mediator.stub!(:create_given_scenario)
164
- @parser.parse(["Story: s", "Scenario: s", "GivenScenario: previous"])
165
- @parser.instance_eval{@state}.should be_an_instance_of(StoryParser::GivenState)
166
- end
167
-
168
- it "should create a When for When" do
169
- @story_mediator.should_receive(:create_when).with("ever")
170
- @parser.parse(["Story: s", "Scenario: s", "When ever"])
171
- end
172
-
173
- it "should create a When for When:" do
174
- @story_mediator.should_receive(:create_when).with("ever")
175
- @parser.parse(["Story: s", "Scenario: s", "When: ever"])
176
- end
177
-
178
- it "should create a Then for Then" do
179
- @story_mediator.should_receive(:create_then).with("and there")
180
- @parser.parse(["Story: s", "Scenario: s", "Then and there"])
181
- end
182
-
183
- it "should create a Then for Then:" do
184
- @story_mediator.should_receive(:create_then).with("and there")
185
- @parser.parse(["Story: s", "Scenario: s", "Then: and there"])
186
- end
187
-
188
- it "should ignore other" do
189
- @parser.parse(["Story: s", "Scenario: s", "this is ignored"])
190
- end
191
- end
192
-
193
- describe StoryParser, "in Given state" do
194
- before(:each) do
195
- @story_mediator = mock("story_mediator")
196
- @parser = StoryParser.new(@story_mediator)
197
- @story_mediator.stub!(:create_story)
198
- @story_mediator.stub!(:create_scenario)
199
- @story_mediator.should_receive(:create_given).with("first")
200
- end
201
-
202
- it "should create a Story for Story" do
203
- @story_mediator.should_receive(:create_story).with("number two","")
204
- @parser.parse(["Story: s", "Scenario: s", "Given first", "Story: number two"])
205
- end
206
-
207
- it "should create a Scenario for Scenario" do
208
- @story_mediator.should_receive(:create_scenario).with("number two")
209
- @parser.parse(["Story: s", "Scenario: s", "Given first", "Scenario: number two"])
210
- end
211
-
212
- it "should create a second Given for Given" do
213
- @story_mediator.should_receive(:create_given).with("second")
214
- @parser.parse(["Story: s", "Scenario: s", "Given first", "Given second"])
215
- end
216
-
217
- it "should create a second Given for And" do
218
- @story_mediator.should_receive(:create_given).with("second")
219
- @parser.parse(["Story: s", "Scenario: s", "Given: first", "And second"])
220
- end
221
-
222
- it "should create a second Given for And:" do
223
- @story_mediator.should_receive(:create_given).with("second")
224
- @parser.parse(["Story: s", "Scenario: s", "Given first", "And: second"])
225
- end
226
-
227
- it "should create a When for When" do
228
- @story_mediator.should_receive(:create_when).with("ever")
229
- @parser.parse(["Story: s", "Scenario: s", "Given first", "When ever"])
230
- end
231
-
232
- it "should create a When for When:" do
233
- @story_mediator.should_receive(:create_when).with("ever")
234
- @parser.parse(["Story: s", "Scenario: s", "Given first", "When: ever"])
235
- end
236
-
237
- it "should create a Then for Then" do
238
- @story_mediator.should_receive(:create_then).with("and there")
239
- @parser.parse(["Story: s", "Scenario: s", "Given first", "Then and there"])
240
- end
241
-
242
- it "should create a Then for Then:" do
243
- @story_mediator.should_receive(:create_then).with("and there")
244
- @parser.parse(["Story: s", "Scenario: s", "Given first", "Then: and there"])
245
- end
246
-
247
- it "should ignore lines beginning with '#'" do
248
- @parser.parse(["Story: s", "Scenario: s", "Given first", "#this is ignored"])
249
- end
250
-
251
- it "should not ignore lines beginning with non-keywords" do
252
- @story_mediator.should_receive(:add_to_last).with("\nthis is not ignored")
253
- @parser.parse(["Story: s", "Scenario: s", "Given first", "this is not ignored"])
254
- end
255
-
256
- end
257
-
258
- describe StoryParser, "in When state" do
259
- before(:each) do
260
- @story_mediator = mock("story_mediator")
261
- @parser = StoryParser.new(@story_mediator)
262
- @story_mediator.stub!(:create_story)
263
- @story_mediator.stub!(:create_scenario)
264
- @story_mediator.should_receive(:create_given).with("first")
265
- @story_mediator.should_receive(:create_when).with("else")
266
- end
267
-
268
- it "should create a Story for Story" do
269
- @story_mediator.should_receive(:create_story).with("number two","")
270
- @parser.parse(["Story: s", "Scenario: s", "Given first", "When: else", "Story: number two"])
271
- end
272
-
273
- it "should create a Scenario for Scenario" do
274
- @story_mediator.should_receive(:create_scenario).with("number two")
275
- @parser.parse(["Story: s", "Scenario: s", "Given first", "When else", "Scenario: number two"])
276
- end
277
-
278
- it "should create Given for Given" do
279
- @story_mediator.should_receive(:create_given).with("second")
280
- @parser.parse(["Story: s", "Scenario: s", "Given first", "When else", "Given second"])
281
- end
282
-
283
- it "should create Given for Given:" do
284
- @story_mediator.should_receive(:create_given).with("second")
285
- @parser.parse(["Story: s", "Scenario: s", "Given first", "When else", "Given: second"])
286
- end
287
-
288
- it "should create a second When for When" do
289
- @story_mediator.should_receive(:create_when).with("ever")
290
- @parser.parse(["Story: s", "Scenario: s", "Given first", "When else", "When ever"])
291
- end
292
-
293
- it "should create a second When for When:" do
294
- @story_mediator.should_receive(:create_when).with("ever")
295
- @parser.parse(["Story: s", "Scenario: s", "Given: first", "When: else", "When: ever"])
296
- end
297
-
298
- it "should create a second When for And" do
299
- @story_mediator.should_receive(:create_when).with("ever")
300
- @parser.parse(["Story: s", "Scenario: s", "Given first", "When else", "And ever"])
301
- end
302
-
303
- it "should create a second When for And:" do
304
- @story_mediator.should_receive(:create_when).with("ever")
305
- @parser.parse(["Story: s", "Scenario: s", "Given: first", "When: else", "And: ever"])
306
- end
307
-
308
- it "should create a Then for Then" do
309
- @story_mediator.should_receive(:create_then).with("and there")
310
- @parser.parse(["Story: s", "Scenario: s", "Given first", "When else", "Then and there"])
311
- end
312
-
313
- it "should create a Then for Then:" do
314
- @story_mediator.should_receive(:create_then).with("and there")
315
- @parser.parse(["Story: s", "Scenario: s", "Given: first", "When: else", "Then: and there"])
316
- end
317
-
318
- it "should ignore lines beginning with '#'" do
319
- @parser.parse(["Story: s", "Scenario: s", "Given first", "When else", "#this is ignored"])
320
- end
321
-
322
- it "should not ignore lines beginning with non-keywords" do
323
- @story_mediator.should_receive(:add_to_last).with("\nthis is not ignored")
324
- @parser.parse(["Story: s", "Scenario: s", "Given: first", "When else", "this is not ignored"])
325
- end
326
- end
327
-
328
- describe StoryParser, "in Then state" do
329
- before(:each) do
330
- @story_mediator = mock("story_mediator")
331
- @parser = StoryParser.new(@story_mediator)
332
- @story_mediator.stub!(:create_story)
333
- @story_mediator.stub!(:create_scenario)
334
- @story_mediator.should_receive(:create_given).with("first")
335
- @story_mediator.should_receive(:create_when).with("else")
336
- @story_mediator.should_receive(:create_then).with("what")
337
- end
338
-
339
- it "should create a Story for Story" do
340
- @story_mediator.should_receive(:create_story).with("number two","")
341
- @parser.parse(["Story: s", "Scenario: s", "Given first", "When else", "Then what", "Story: number two"])
342
- end
343
-
344
- it "should create a Scenario for Scenario" do
345
- @story_mediator.should_receive(:create_scenario).with("number two")
346
- @parser.parse(["Story: s", "Scenario: s", "Given first", "When else", "Then what", "Scenario: number two"])
347
- end
348
-
349
- it "should create Given for Given" do
350
- @story_mediator.should_receive(:create_given).with("second")
351
- @parser.parse(["Story: s", "Scenario: s", "Given first", "When else", "Then what", "Given second"])
352
- end
353
-
354
- it "should create Given for Given:" do
355
- @story_mediator.should_receive(:create_given).with("second")
356
- @parser.parse(["Story: s", "Scenario: s", "Given: first", "When: else", "Then: what", "Given: second"])
357
- end
358
-
359
- it "should create When for When" do
360
- @story_mediator.should_receive(:create_when).with("ever")
361
- @parser.parse(["Story: s", "Scenario: s", "Given first", "When else", "Then what", "When ever"])
362
- end
363
-
364
- it "should create When for When:" do
365
- @story_mediator.should_receive(:create_when).with("ever")
366
- @parser.parse(["Story: s", "Scenario: s", "Given: first", "When: else", "Then: what", "When: ever"])
367
- end
368
-
369
- it "should create a Then for Then" do
370
- @story_mediator.should_receive(:create_then).with("and there")
371
- @parser.parse(["Story: s", "Scenario: s", "Given first", "When else", "Then what", "Then and there"])
372
- end
373
-
374
- it "should create a Then for Then:" do
375
- @story_mediator.should_receive(:create_then).with("and there")
376
- @parser.parse(["Story: s", "Scenario: s", "Given: first", "When: else", "Then: what", "Then: and there"])
377
- end
378
-
379
- it "should create a second Then for And" do
380
- @story_mediator.should_receive(:create_then).with("ever")
381
- @parser.parse(["Story: s", "Scenario: s", "Given first", "When else", "Then what", "And ever"])
382
- end
383
-
384
- it "should create a second Then for And:" do
385
- @story_mediator.should_receive(:create_then).with("ever")
386
- @parser.parse(["Story: s", "Scenario: s", "Given: first", "When: else", "Then: what", "And: ever"])
387
- end
388
-
389
-
390
- it "should ignore lines beginning with '#'" do
391
- @parser.parse(["Story: s", "Scenario: s", "Given first", "When else", "Then what", "#this is ignored"])
392
- end
393
-
394
- it "should not ignore lines beginning with non-keywords" do
395
- @story_mediator.should_receive(:add_to_last).with("\nthis is not ignored")
396
- @parser.parse(["Story: s", "Scenario: s", "Given: first", "When else", "Then what", "this is not ignored"])
397
- end
398
- end
399
- end
400
- end
401
- end