paper_trail_manager 0.1.6 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +7 -0
- data/.travis.yml +6 -0
- data/CHANGES.md +37 -0
- data/Gemfile +1 -18
- data/Gemfile.lock +60 -98
- data/README.md +23 -0
- data/Rakefile +10 -25
- data/VERSION +1 -1
- data/paper_trail_manager.gemspec +322 -93
- data/rails_test/Rakefile +90 -0
- data/{spec/dummy → rails_test/common}/app/controllers/application_controller.rb +0 -0
- data/{spec/dummy → rails_test/common}/app/controllers/entities_controller.rb +0 -0
- data/{spec/dummy → rails_test/common}/app/controllers/platforms_controller.rb +0 -0
- data/{spec/dummy → rails_test/common}/app/helpers/application_helper.rb +0 -0
- data/{spec/dummy → rails_test/common}/app/helpers/entities_helper.rb +0 -0
- data/{spec/dummy → rails_test/common}/app/helpers/platforms_helper.rb +0 -0
- data/{spec/dummy → rails_test/common}/app/models/entity.rb +2 -0
- data/{spec/dummy → rails_test/common}/app/models/platform.rb +2 -0
- data/{spec/dummy → rails_test/common}/app/views/application/index.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/app/views/entities/_form.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/app/views/entities/edit.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/app/views/entities/index.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/app/views/entities/new.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/app/views/entities/show.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/app/views/layouts/application.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/app/views/platforms/_form.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/app/views/platforms/edit.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/app/views/platforms/index.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/app/views/platforms/new.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/app/views/platforms/show.html.erb +0 -0
- data/{spec/dummy → rails_test/common}/config/database.yml +0 -0
- data/{spec/dummy → rails_test/common}/db/migrate/20110228091428_create_entities.rb +0 -0
- data/{spec/dummy → rails_test/common}/db/migrate/20110228093241_create_platforms.rb +0 -0
- data/{spec/dummy → rails_test/common}/db/migrate/20110228094444_create_versions.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/controllers/entities_controller_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/controllers/platforms_controller_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/helpers/entities_helper_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/helpers/platforms_helper_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/integration/navigation_spec.rb +1 -1
- data/{spec/dummy → rails_test/common}/spec/integration/paper_trail_manager_spec.rb +28 -21
- data/{spec/dummy → rails_test/common}/spec/models/entity_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/models/platform_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/requests/entities_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/requests/platforms_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/routing/entities_routing_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/routing/platforms_routing_spec.rb +0 -0
- data/rails_test/common/spec/spec_helper.rb +32 -0
- data/{spec → rails_test/common/spec}/support/factories.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/views/entities/edit.html.erb_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/views/entities/index.html.erb_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/views/entities/new.html.erb_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/views/entities/show.html.erb_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/views/platforms/edit.html.erb_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/views/platforms/index.html.erb_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/views/platforms/new.html.erb_spec.rb +0 -0
- data/{spec/dummy → rails_test/common}/spec/views/platforms/show.html.erb_spec.rb +0 -0
- data/rails_test/generate_test_directory +59 -0
- data/rails_test/rails-3.0.17/.gitignore +4 -0
- data/rails_test/rails-3.0.17/README +256 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/Rakefile +1 -1
- data/rails_test/rails-3.0.17/app/controllers/application_controller.rb +6 -0
- data/rails_test/rails-3.0.17/app/controllers/entities_controller.rb +83 -0
- data/rails_test/rails-3.0.17/app/controllers/platforms_controller.rb +83 -0
- data/rails_test/rails-3.0.17/app/helpers/application_helper.rb +2 -0
- data/rails_test/rails-3.0.17/app/helpers/entities_helper.rb +2 -0
- data/rails_test/rails-3.0.17/app/helpers/platforms_helper.rb +2 -0
- data/rails_test/rails-3.0.17/app/models/entity.rb +8 -0
- data/rails_test/rails-3.0.17/app/models/platform.rb +8 -0
- data/rails_test/rails-3.0.17/app/views/application/index.html.erb +6 -0
- data/rails_test/rails-3.0.17/app/views/entities/_form.html.erb +17 -0
- data/rails_test/rails-3.0.17/app/views/entities/edit.html.erb +6 -0
- data/rails_test/rails-3.0.17/app/views/entities/index.html.erb +21 -0
- data/rails_test/rails-3.0.17/app/views/entities/new.html.erb +5 -0
- data/rails_test/rails-3.0.17/app/views/entities/show.html.erb +5 -0
- data/rails_test/rails-3.0.17/app/views/layouts/application.html.erb +14 -0
- data/rails_test/rails-3.0.17/app/views/platforms/_form.html.erb +17 -0
- data/rails_test/rails-3.0.17/app/views/platforms/edit.html.erb +6 -0
- data/rails_test/rails-3.0.17/app/views/platforms/index.html.erb +21 -0
- data/rails_test/rails-3.0.17/app/views/platforms/new.html.erb +5 -0
- data/rails_test/rails-3.0.17/app/views/platforms/show.html.erb +5 -0
- data/rails_test/rails-3.0.17/config.ru +4 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/config/application.rb +5 -8
- data/rails_test/rails-3.0.17/config/boot.rb +6 -0
- data/rails_test/rails-3.0.17/config/database.yml +22 -0
- data/rails_test/rails-3.0.17/config/environment.rb +5 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/config/environments/development.rb +1 -1
- data/{spec/dummy → rails_test/rails-3.0.17}/config/environments/production.rb +1 -1
- data/{spec/dummy → rails_test/rails-3.0.17}/config/environments/test.rb +1 -1
- data/{spec/dummy → rails_test/rails-3.0.17}/config/initializers/backtrace_silencers.rb +0 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/config/initializers/inflections.rb +0 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/config/initializers/mime_types.rb +0 -0
- data/rails_test/rails-3.0.17/config/initializers/secret_token.rb +7 -0
- data/rails_test/rails-3.0.17/config/initializers/session_store.rb +8 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/config/locales/en.yml +0 -0
- data/rails_test/rails-3.0.17/config/routes.rb +8 -0
- data/rails_test/rails-3.0.17/db/migrate/20110228091428_create_entities.rb +14 -0
- data/rails_test/rails-3.0.17/db/migrate/20110228093241_create_platforms.rb +14 -0
- data/rails_test/rails-3.0.17/db/migrate/20110228094444_create_versions.rb +18 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/db/schema.rb +0 -0
- data/rails_test/rails-3.0.17/db/seeds.rb +7 -0
- data/rails_test/rails-3.0.17/doc/README_FOR_APP +2 -0
- data/{spec/dummy/public/favicon.ico → rails_test/rails-3.0.17/lib/tasks/.gitkeep} +0 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/public/404.html +0 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/public/422.html +0 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/public/500.html +0 -0
- data/rails_test/rails-3.0.17/public/favicon.ico +0 -0
- data/rails_test/rails-3.0.17/public/images/rails.png +0 -0
- data/rails_test/rails-3.0.17/public/index.html +239 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/public/javascripts/application.js +0 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/public/javascripts/controls.js +0 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/public/javascripts/dragdrop.js +0 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/public/javascripts/effects.js +0 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/public/javascripts/prototype.js +0 -0
- data/rails_test/rails-3.0.17/public/javascripts/rails.js +202 -0
- data/rails_test/rails-3.0.17/public/robots.txt +5 -0
- data/rails_test/rails-3.0.17/public/stylesheets/.gitkeep +0 -0
- data/{spec/dummy → rails_test/rails-3.0.17}/script/rails +0 -0
- data/rails_test/rails-3.0.17/spec/controllers/entities_controller_spec.rb +125 -0
- data/rails_test/rails-3.0.17/spec/controllers/platforms_controller_spec.rb +125 -0
- data/rails_test/rails-3.0.17/spec/helpers/entities_helper_spec.rb +15 -0
- data/rails_test/rails-3.0.17/spec/helpers/platforms_helper_spec.rb +15 -0
- data/rails_test/rails-3.0.17/spec/integration/navigation_spec.rb +7 -0
- data/rails_test/rails-3.0.17/spec/integration/paper_trail_manager_spec.rb +232 -0
- data/rails_test/rails-3.0.17/spec/models/entity_spec.rb +14 -0
- data/rails_test/rails-3.0.17/spec/models/platform_spec.rb +14 -0
- data/rails_test/rails-3.0.17/spec/requests/entities_spec.rb +11 -0
- data/rails_test/rails-3.0.17/spec/requests/platforms_spec.rb +11 -0
- data/rails_test/rails-3.0.17/spec/routing/entities_routing_spec.rb +35 -0
- data/rails_test/rails-3.0.17/spec/routing/platforms_routing_spec.rb +35 -0
- data/rails_test/rails-3.0.17/spec/spec_helper.rb +32 -0
- data/rails_test/rails-3.0.17/spec/support/factories.rb +14 -0
- data/rails_test/rails-3.0.17/spec/views/entities/edit.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.0.17/spec/views/entities/index.html.erb_spec.rb +14 -0
- data/rails_test/rails-3.0.17/spec/views/entities/new.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.0.17/spec/views/entities/show.html.erb_spec.rb +11 -0
- data/rails_test/rails-3.0.17/spec/views/platforms/edit.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.0.17/spec/views/platforms/index.html.erb_spec.rb +14 -0
- data/rails_test/rails-3.0.17/spec/views/platforms/new.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.0.17/spec/views/platforms/show.html.erb_spec.rb +11 -0
- data/rails_test/rails-3.0.17/test/performance/browsing_test.rb +9 -0
- data/rails_test/rails-3.0.17/test/test_helper.rb +13 -0
- data/rails_test/rails-3.0.17/vendor/plugins/.gitkeep +0 -0
- data/rails_test/rails-3.1.8/.gitignore +15 -0
- data/rails_test/rails-3.1.8/README +261 -0
- data/rails_test/rails-3.1.8/Rakefile +7 -0
- data/rails_test/rails-3.1.8/app/assets/images/rails.png +0 -0
- data/rails_test/rails-3.1.8/app/assets/javascripts/application.js +9 -0
- data/rails_test/rails-3.1.8/app/assets/stylesheets/application.css +7 -0
- data/rails_test/rails-3.1.8/app/controllers/application_controller.rb +6 -0
- data/rails_test/rails-3.1.8/app/controllers/entities_controller.rb +83 -0
- data/rails_test/rails-3.1.8/app/controllers/platforms_controller.rb +83 -0
- data/rails_test/rails-3.1.8/app/helpers/application_helper.rb +2 -0
- data/rails_test/rails-3.1.8/app/helpers/entities_helper.rb +2 -0
- data/rails_test/rails-3.1.8/app/helpers/platforms_helper.rb +2 -0
- data/rails_test/rails-3.1.8/app/mailers/.gitkeep +0 -0
- data/rails_test/rails-3.1.8/app/models/.gitkeep +0 -0
- data/rails_test/rails-3.1.8/app/models/entity.rb +8 -0
- data/rails_test/rails-3.1.8/app/models/platform.rb +8 -0
- data/rails_test/rails-3.1.8/app/views/application/index.html.erb +6 -0
- data/rails_test/rails-3.1.8/app/views/entities/_form.html.erb +17 -0
- data/rails_test/rails-3.1.8/app/views/entities/edit.html.erb +6 -0
- data/rails_test/rails-3.1.8/app/views/entities/index.html.erb +21 -0
- data/rails_test/rails-3.1.8/app/views/entities/new.html.erb +5 -0
- data/rails_test/rails-3.1.8/app/views/entities/show.html.erb +5 -0
- data/rails_test/rails-3.1.8/app/views/layouts/application.html.erb +14 -0
- data/rails_test/rails-3.1.8/app/views/platforms/_form.html.erb +17 -0
- data/rails_test/rails-3.1.8/app/views/platforms/edit.html.erb +6 -0
- data/rails_test/rails-3.1.8/app/views/platforms/index.html.erb +21 -0
- data/rails_test/rails-3.1.8/app/views/platforms/new.html.erb +5 -0
- data/rails_test/rails-3.1.8/app/views/platforms/show.html.erb +5 -0
- data/{spec/dummy → rails_test/rails-3.1.8}/config.ru +1 -1
- data/rails_test/rails-3.1.8/config/application.rb +48 -0
- data/rails_test/rails-3.1.8/config/boot.rb +6 -0
- data/rails_test/rails-3.1.8/config/database.yml +22 -0
- data/{spec/dummy → rails_test/rails-3.1.8}/config/environment.rb +1 -1
- data/rails_test/rails-3.1.8/config/environments/development.rb +30 -0
- data/rails_test/rails-3.1.8/config/environments/production.rb +60 -0
- data/rails_test/rails-3.1.8/config/environments/test.rb +39 -0
- data/rails_test/rails-3.1.8/config/initializers/backtrace_silencers.rb +7 -0
- data/rails_test/rails-3.1.8/config/initializers/inflections.rb +10 -0
- data/rails_test/rails-3.1.8/config/initializers/mime_types.rb +5 -0
- data/{spec/dummy → rails_test/rails-3.1.8}/config/initializers/secret_token.rb +1 -1
- data/{spec/dummy → rails_test/rails-3.1.8}/config/initializers/session_store.rb +2 -2
- data/rails_test/rails-3.1.8/config/initializers/wrap_parameters.rb +14 -0
- data/rails_test/rails-3.1.8/config/locales/en.yml +5 -0
- data/rails_test/rails-3.1.8/config/routes.rb +8 -0
- data/rails_test/rails-3.1.8/db/migrate/20110228091428_create_entities.rb +14 -0
- data/rails_test/rails-3.1.8/db/migrate/20110228093241_create_platforms.rb +14 -0
- data/rails_test/rails-3.1.8/db/migrate/20110228094444_create_versions.rb +18 -0
- data/rails_test/rails-3.1.8/db/schema.rb +40 -0
- data/rails_test/rails-3.1.8/db/seeds.rb +7 -0
- data/rails_test/rails-3.1.8/doc/README_FOR_APP +2 -0
- data/rails_test/rails-3.1.8/lib/assets/.gitkeep +0 -0
- data/rails_test/rails-3.1.8/lib/tasks/.gitkeep +0 -0
- data/rails_test/rails-3.1.8/log/.gitkeep +0 -0
- data/rails_test/rails-3.1.8/public/404.html +26 -0
- data/rails_test/rails-3.1.8/public/422.html +26 -0
- data/rails_test/rails-3.1.8/public/500.html +26 -0
- data/rails_test/rails-3.1.8/public/favicon.ico +0 -0
- data/rails_test/rails-3.1.8/public/index.html +241 -0
- data/rails_test/rails-3.1.8/public/robots.txt +5 -0
- data/rails_test/rails-3.1.8/script/rails +6 -0
- data/rails_test/rails-3.1.8/spec/controllers/entities_controller_spec.rb +125 -0
- data/rails_test/rails-3.1.8/spec/controllers/platforms_controller_spec.rb +125 -0
- data/rails_test/rails-3.1.8/spec/helpers/entities_helper_spec.rb +15 -0
- data/rails_test/rails-3.1.8/spec/helpers/platforms_helper_spec.rb +15 -0
- data/rails_test/rails-3.1.8/spec/integration/navigation_spec.rb +7 -0
- data/rails_test/rails-3.1.8/spec/integration/paper_trail_manager_spec.rb +232 -0
- data/rails_test/rails-3.1.8/spec/models/entity_spec.rb +14 -0
- data/rails_test/rails-3.1.8/spec/models/platform_spec.rb +14 -0
- data/rails_test/rails-3.1.8/spec/requests/entities_spec.rb +11 -0
- data/rails_test/rails-3.1.8/spec/requests/platforms_spec.rb +11 -0
- data/rails_test/rails-3.1.8/spec/routing/entities_routing_spec.rb +35 -0
- data/rails_test/rails-3.1.8/spec/routing/platforms_routing_spec.rb +35 -0
- data/rails_test/rails-3.1.8/spec/spec_helper.rb +32 -0
- data/rails_test/rails-3.1.8/spec/support/factories.rb +14 -0
- data/rails_test/rails-3.1.8/spec/views/entities/edit.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.1.8/spec/views/entities/index.html.erb_spec.rb +14 -0
- data/rails_test/rails-3.1.8/spec/views/entities/new.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.1.8/spec/views/entities/show.html.erb_spec.rb +11 -0
- data/rails_test/rails-3.1.8/spec/views/platforms/edit.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.1.8/spec/views/platforms/index.html.erb_spec.rb +14 -0
- data/rails_test/rails-3.1.8/spec/views/platforms/new.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.1.8/spec/views/platforms/show.html.erb_spec.rb +11 -0
- data/rails_test/rails-3.1.8/test/fixtures/.gitkeep +0 -0
- data/rails_test/rails-3.1.8/test/functional/.gitkeep +0 -0
- data/rails_test/rails-3.1.8/test/integration/.gitkeep +0 -0
- data/rails_test/rails-3.1.8/test/performance/browsing_test.rb +12 -0
- data/rails_test/rails-3.1.8/test/test_helper.rb +13 -0
- data/rails_test/rails-3.1.8/test/unit/.gitkeep +0 -0
- data/rails_test/rails-3.1.8/vendor/assets/stylesheets/.gitkeep +0 -0
- data/rails_test/rails-3.1.8/vendor/plugins/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/.gitignore +15 -0
- data/rails_test/rails-3.2.8/README.rdoc +261 -0
- data/rails_test/rails-3.2.8/Rakefile +7 -0
- data/rails_test/rails-3.2.8/app/assets/images/rails.png +0 -0
- data/rails_test/rails-3.2.8/app/assets/javascripts/application.js +15 -0
- data/rails_test/rails-3.2.8/app/assets/stylesheets/application.css +13 -0
- data/rails_test/rails-3.2.8/app/controllers/application_controller.rb +6 -0
- data/rails_test/rails-3.2.8/app/controllers/entities_controller.rb +83 -0
- data/rails_test/rails-3.2.8/app/controllers/platforms_controller.rb +83 -0
- data/rails_test/rails-3.2.8/app/helpers/application_helper.rb +2 -0
- data/rails_test/rails-3.2.8/app/helpers/entities_helper.rb +2 -0
- data/rails_test/rails-3.2.8/app/helpers/platforms_helper.rb +2 -0
- data/rails_test/rails-3.2.8/app/mailers/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/app/models/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/app/models/entity.rb +8 -0
- data/rails_test/rails-3.2.8/app/models/platform.rb +8 -0
- data/rails_test/rails-3.2.8/app/views/application/index.html.erb +6 -0
- data/rails_test/rails-3.2.8/app/views/entities/_form.html.erb +17 -0
- data/rails_test/rails-3.2.8/app/views/entities/edit.html.erb +6 -0
- data/rails_test/rails-3.2.8/app/views/entities/index.html.erb +21 -0
- data/rails_test/rails-3.2.8/app/views/entities/new.html.erb +5 -0
- data/rails_test/rails-3.2.8/app/views/entities/show.html.erb +5 -0
- data/rails_test/rails-3.2.8/app/views/layouts/application.html.erb +14 -0
- data/rails_test/rails-3.2.8/app/views/platforms/_form.html.erb +17 -0
- data/rails_test/rails-3.2.8/app/views/platforms/edit.html.erb +6 -0
- data/rails_test/rails-3.2.8/app/views/platforms/index.html.erb +21 -0
- data/rails_test/rails-3.2.8/app/views/platforms/new.html.erb +5 -0
- data/rails_test/rails-3.2.8/app/views/platforms/show.html.erb +5 -0
- data/rails_test/rails-3.2.8/config.ru +4 -0
- data/rails_test/rails-3.2.8/config/application.rb +62 -0
- data/rails_test/rails-3.2.8/config/boot.rb +6 -0
- data/rails_test/rails-3.2.8/config/database.yml +22 -0
- data/rails_test/rails-3.2.8/config/environment.rb +5 -0
- data/rails_test/rails-3.2.8/config/environments/development.rb +37 -0
- data/rails_test/rails-3.2.8/config/environments/production.rb +67 -0
- data/rails_test/rails-3.2.8/config/environments/test.rb +37 -0
- data/rails_test/rails-3.2.8/config/initializers/backtrace_silencers.rb +7 -0
- data/rails_test/rails-3.2.8/config/initializers/inflections.rb +15 -0
- data/rails_test/rails-3.2.8/config/initializers/mime_types.rb +5 -0
- data/rails_test/rails-3.2.8/config/initializers/secret_token.rb +7 -0
- data/rails_test/rails-3.2.8/config/initializers/session_store.rb +8 -0
- data/rails_test/rails-3.2.8/config/initializers/wrap_parameters.rb +14 -0
- data/rails_test/rails-3.2.8/config/locales/en.yml +5 -0
- data/rails_test/rails-3.2.8/config/routes.rb +8 -0
- data/rails_test/rails-3.2.8/db/migrate/20110228091428_create_entities.rb +14 -0
- data/rails_test/rails-3.2.8/db/migrate/20110228093241_create_platforms.rb +14 -0
- data/rails_test/rails-3.2.8/db/migrate/20110228094444_create_versions.rb +18 -0
- data/rails_test/rails-3.2.8/db/schema.rb +40 -0
- data/rails_test/rails-3.2.8/db/seeds.rb +7 -0
- data/rails_test/rails-3.2.8/doc/README_FOR_APP +2 -0
- data/rails_test/rails-3.2.8/lib/assets/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/lib/tasks/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/log/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/public/404.html +26 -0
- data/rails_test/rails-3.2.8/public/422.html +26 -0
- data/rails_test/rails-3.2.8/public/500.html +25 -0
- data/rails_test/rails-3.2.8/public/favicon.ico +0 -0
- data/rails_test/rails-3.2.8/public/index.html +241 -0
- data/rails_test/rails-3.2.8/public/robots.txt +5 -0
- data/rails_test/rails-3.2.8/script/rails +6 -0
- data/rails_test/rails-3.2.8/spec/controllers/entities_controller_spec.rb +125 -0
- data/rails_test/rails-3.2.8/spec/controllers/platforms_controller_spec.rb +125 -0
- data/rails_test/rails-3.2.8/spec/helpers/entities_helper_spec.rb +15 -0
- data/rails_test/rails-3.2.8/spec/helpers/platforms_helper_spec.rb +15 -0
- data/rails_test/rails-3.2.8/spec/integration/navigation_spec.rb +7 -0
- data/rails_test/rails-3.2.8/spec/integration/paper_trail_manager_spec.rb +232 -0
- data/rails_test/rails-3.2.8/spec/models/entity_spec.rb +14 -0
- data/rails_test/rails-3.2.8/spec/models/platform_spec.rb +14 -0
- data/rails_test/rails-3.2.8/spec/requests/entities_spec.rb +11 -0
- data/rails_test/rails-3.2.8/spec/requests/platforms_spec.rb +11 -0
- data/rails_test/rails-3.2.8/spec/routing/entities_routing_spec.rb +35 -0
- data/rails_test/rails-3.2.8/spec/routing/platforms_routing_spec.rb +35 -0
- data/rails_test/rails-3.2.8/spec/spec_helper.rb +32 -0
- data/rails_test/rails-3.2.8/spec/support/factories.rb +14 -0
- data/rails_test/rails-3.2.8/spec/views/entities/edit.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.2.8/spec/views/entities/index.html.erb_spec.rb +14 -0
- data/rails_test/rails-3.2.8/spec/views/entities/new.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.2.8/spec/views/entities/show.html.erb_spec.rb +11 -0
- data/rails_test/rails-3.2.8/spec/views/platforms/edit.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.2.8/spec/views/platforms/index.html.erb_spec.rb +14 -0
- data/rails_test/rails-3.2.8/spec/views/platforms/new.html.erb_spec.rb +15 -0
- data/rails_test/rails-3.2.8/spec/views/platforms/show.html.erb_spec.rb +11 -0
- data/rails_test/rails-3.2.8/test/fixtures/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/test/functional/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/test/integration/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/test/performance/browsing_test.rb +12 -0
- data/rails_test/rails-3.2.8/test/test_helper.rb +13 -0
- data/rails_test/rails-3.2.8/test/unit/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/vendor/assets/javascripts/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/vendor/assets/stylesheets/.gitkeep +0 -0
- data/rails_test/rails-3.2.8/vendor/plugins/.gitkeep +0 -0
- metadata +322 -138
- data/spec/controllers/paper_trail_manager/changes_controller_spec.rb +0 -8
- data/spec/dummy/config/boot.rb +0 -10
- data/spec/dummy/config/routes.rb +0 -64
- data/spec/dummy/public/javascripts/rails.js +0 -175
- data/spec/dummy/public/stylesheets/changes.css +0 -47
- data/spec/paper_trail_manager_spec.rb +0 -7
- data/spec/spec_helper.rb +0 -77
File without changes
|
@@ -0,0 +1,241 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Ruby on Rails: Welcome aboard</title>
|
5
|
+
<style type="text/css" media="screen">
|
6
|
+
body {
|
7
|
+
margin: 0;
|
8
|
+
margin-bottom: 25px;
|
9
|
+
padding: 0;
|
10
|
+
background-color: #f0f0f0;
|
11
|
+
font-family: "Lucida Grande", "Bitstream Vera Sans", "Verdana";
|
12
|
+
font-size: 13px;
|
13
|
+
color: #333;
|
14
|
+
}
|
15
|
+
|
16
|
+
h1 {
|
17
|
+
font-size: 28px;
|
18
|
+
color: #000;
|
19
|
+
}
|
20
|
+
|
21
|
+
a {color: #03c}
|
22
|
+
a:hover {
|
23
|
+
background-color: #03c;
|
24
|
+
color: white;
|
25
|
+
text-decoration: none;
|
26
|
+
}
|
27
|
+
|
28
|
+
|
29
|
+
#page {
|
30
|
+
background-color: #f0f0f0;
|
31
|
+
width: 750px;
|
32
|
+
margin: 0;
|
33
|
+
margin-left: auto;
|
34
|
+
margin-right: auto;
|
35
|
+
}
|
36
|
+
|
37
|
+
#content {
|
38
|
+
float: left;
|
39
|
+
background-color: white;
|
40
|
+
border: 3px solid #aaa;
|
41
|
+
border-top: none;
|
42
|
+
padding: 25px;
|
43
|
+
width: 500px;
|
44
|
+
}
|
45
|
+
|
46
|
+
#sidebar {
|
47
|
+
float: right;
|
48
|
+
width: 175px;
|
49
|
+
}
|
50
|
+
|
51
|
+
#footer {
|
52
|
+
clear: both;
|
53
|
+
}
|
54
|
+
|
55
|
+
#header, #about, #getting-started {
|
56
|
+
padding-left: 75px;
|
57
|
+
padding-right: 30px;
|
58
|
+
}
|
59
|
+
|
60
|
+
|
61
|
+
#header {
|
62
|
+
background-image: url("assets/rails.png");
|
63
|
+
background-repeat: no-repeat;
|
64
|
+
background-position: top left;
|
65
|
+
height: 64px;
|
66
|
+
}
|
67
|
+
#header h1, #header h2 {margin: 0}
|
68
|
+
#header h2 {
|
69
|
+
color: #888;
|
70
|
+
font-weight: normal;
|
71
|
+
font-size: 16px;
|
72
|
+
}
|
73
|
+
|
74
|
+
|
75
|
+
#about h3 {
|
76
|
+
margin: 0;
|
77
|
+
margin-bottom: 10px;
|
78
|
+
font-size: 14px;
|
79
|
+
}
|
80
|
+
|
81
|
+
#about-content {
|
82
|
+
background-color: #ffd;
|
83
|
+
border: 1px solid #fc0;
|
84
|
+
margin-left: -55px;
|
85
|
+
margin-right: -10px;
|
86
|
+
}
|
87
|
+
#about-content table {
|
88
|
+
margin-top: 10px;
|
89
|
+
margin-bottom: 10px;
|
90
|
+
font-size: 11px;
|
91
|
+
border-collapse: collapse;
|
92
|
+
}
|
93
|
+
#about-content td {
|
94
|
+
padding: 10px;
|
95
|
+
padding-top: 3px;
|
96
|
+
padding-bottom: 3px;
|
97
|
+
}
|
98
|
+
#about-content td.name {color: #555}
|
99
|
+
#about-content td.value {color: #000}
|
100
|
+
|
101
|
+
#about-content ul {
|
102
|
+
padding: 0;
|
103
|
+
list-style-type: none;
|
104
|
+
}
|
105
|
+
|
106
|
+
#about-content.failure {
|
107
|
+
background-color: #fcc;
|
108
|
+
border: 1px solid #f00;
|
109
|
+
}
|
110
|
+
#about-content.failure p {
|
111
|
+
margin: 0;
|
112
|
+
padding: 10px;
|
113
|
+
}
|
114
|
+
|
115
|
+
|
116
|
+
#getting-started {
|
117
|
+
border-top: 1px solid #ccc;
|
118
|
+
margin-top: 25px;
|
119
|
+
padding-top: 15px;
|
120
|
+
}
|
121
|
+
#getting-started h1 {
|
122
|
+
margin: 0;
|
123
|
+
font-size: 20px;
|
124
|
+
}
|
125
|
+
#getting-started h2 {
|
126
|
+
margin: 0;
|
127
|
+
font-size: 14px;
|
128
|
+
font-weight: normal;
|
129
|
+
color: #333;
|
130
|
+
margin-bottom: 25px;
|
131
|
+
}
|
132
|
+
#getting-started ol {
|
133
|
+
margin-left: 0;
|
134
|
+
padding-left: 0;
|
135
|
+
}
|
136
|
+
#getting-started li {
|
137
|
+
font-size: 18px;
|
138
|
+
color: #888;
|
139
|
+
margin-bottom: 25px;
|
140
|
+
}
|
141
|
+
#getting-started li h2 {
|
142
|
+
margin: 0;
|
143
|
+
font-weight: normal;
|
144
|
+
font-size: 18px;
|
145
|
+
color: #333;
|
146
|
+
}
|
147
|
+
#getting-started li p {
|
148
|
+
color: #555;
|
149
|
+
font-size: 13px;
|
150
|
+
}
|
151
|
+
|
152
|
+
|
153
|
+
#sidebar ul {
|
154
|
+
margin-left: 0;
|
155
|
+
padding-left: 0;
|
156
|
+
}
|
157
|
+
#sidebar ul h3 {
|
158
|
+
margin-top: 25px;
|
159
|
+
font-size: 16px;
|
160
|
+
padding-bottom: 10px;
|
161
|
+
border-bottom: 1px solid #ccc;
|
162
|
+
}
|
163
|
+
#sidebar li {
|
164
|
+
list-style-type: none;
|
165
|
+
}
|
166
|
+
#sidebar ul.links li {
|
167
|
+
margin-bottom: 5px;
|
168
|
+
}
|
169
|
+
|
170
|
+
.filename {
|
171
|
+
font-style: italic;
|
172
|
+
}
|
173
|
+
</style>
|
174
|
+
<script type="text/javascript">
|
175
|
+
function about() {
|
176
|
+
info = document.getElementById('about-content');
|
177
|
+
if (window.XMLHttpRequest)
|
178
|
+
{ xhr = new XMLHttpRequest(); }
|
179
|
+
else
|
180
|
+
{ xhr = new ActiveXObject("Microsoft.XMLHTTP"); }
|
181
|
+
xhr.open("GET","rails/info/properties",false);
|
182
|
+
xhr.send("");
|
183
|
+
info.innerHTML = xhr.responseText;
|
184
|
+
info.style.display = 'block'
|
185
|
+
}
|
186
|
+
</script>
|
187
|
+
</head>
|
188
|
+
<body>
|
189
|
+
<div id="page">
|
190
|
+
<div id="sidebar">
|
191
|
+
<ul id="sidebar-items">
|
192
|
+
<li>
|
193
|
+
<h3>Browse the documentation</h3>
|
194
|
+
<ul class="links">
|
195
|
+
<li><a href="http://guides.rubyonrails.org/">Rails Guides</a></li>
|
196
|
+
<li><a href="http://api.rubyonrails.org/">Rails API</a></li>
|
197
|
+
<li><a href="http://www.ruby-doc.org/core/">Ruby core</a></li>
|
198
|
+
<li><a href="http://www.ruby-doc.org/stdlib/">Ruby standard library</a></li>
|
199
|
+
</ul>
|
200
|
+
</li>
|
201
|
+
</ul>
|
202
|
+
</div>
|
203
|
+
|
204
|
+
<div id="content">
|
205
|
+
<div id="header">
|
206
|
+
<h1>Welcome aboard</h1>
|
207
|
+
<h2>You’re riding Ruby on Rails!</h2>
|
208
|
+
</div>
|
209
|
+
|
210
|
+
<div id="about">
|
211
|
+
<h3><a href="rails/info/properties" onclick="about(); return false">About your application’s environment</a></h3>
|
212
|
+
<div id="about-content" style="display: none"></div>
|
213
|
+
</div>
|
214
|
+
|
215
|
+
<div id="getting-started">
|
216
|
+
<h1>Getting started</h1>
|
217
|
+
<h2>Here’s how to get rolling:</h2>
|
218
|
+
|
219
|
+
<ol>
|
220
|
+
<li>
|
221
|
+
<h2>Use <code>rails generate</code> to create your models and controllers</h2>
|
222
|
+
<p>To see all available options, run it without parameters.</p>
|
223
|
+
</li>
|
224
|
+
|
225
|
+
<li>
|
226
|
+
<h2>Set up a default route and remove <span class="filename">public/index.html</span></h2>
|
227
|
+
<p>Routes are set up in <span class="filename">config/routes.rb</span>.</p>
|
228
|
+
</li>
|
229
|
+
|
230
|
+
<li>
|
231
|
+
<h2>Create your database</h2>
|
232
|
+
<p>Run <code>rake db:create</code> to create your database. If you're not using SQLite (the default), edit <span class="filename">config/database.yml</span> with your username and password.</p>
|
233
|
+
</li>
|
234
|
+
</ol>
|
235
|
+
</div>
|
236
|
+
</div>
|
237
|
+
|
238
|
+
<div id="footer"> </div>
|
239
|
+
</div>
|
240
|
+
</body>
|
241
|
+
</html>
|
@@ -0,0 +1,6 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
|
3
|
+
|
4
|
+
APP_PATH = File.expand_path('../../config/application', __FILE__)
|
5
|
+
require File.expand_path('../../config/boot', __FILE__)
|
6
|
+
require 'rails/commands'
|
@@ -0,0 +1,125 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
# This spec was generated by rspec-rails when you ran the scaffold generator.
|
4
|
+
# It demonstrates how one might use RSpec to specify the controller code that
|
5
|
+
# was generated by the Rails when you ran the scaffold generator.
|
6
|
+
|
7
|
+
describe EntitiesController do
|
8
|
+
|
9
|
+
def mock_entity(stubs={})
|
10
|
+
@mock_entity ||= mock_model(Entity, stubs).as_null_object
|
11
|
+
end
|
12
|
+
|
13
|
+
describe "GET index" do
|
14
|
+
it "assigns all entities as @entities" do
|
15
|
+
Entity.stub(:all) { [mock_entity] }
|
16
|
+
get :index
|
17
|
+
assigns(:entities).should eq([mock_entity])
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "GET show" do
|
22
|
+
it "assigns the requested entity as @entity" do
|
23
|
+
Entity.stub(:find).with("37") { mock_entity }
|
24
|
+
get :show, :id => "37"
|
25
|
+
assigns(:entity).should be(mock_entity)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
describe "GET new" do
|
30
|
+
it "assigns a new entity as @entity" do
|
31
|
+
Entity.stub(:new) { mock_entity }
|
32
|
+
get :new
|
33
|
+
assigns(:entity).should be(mock_entity)
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
describe "GET edit" do
|
38
|
+
it "assigns the requested entity as @entity" do
|
39
|
+
Entity.stub(:find).with("37") { mock_entity }
|
40
|
+
get :edit, :id => "37"
|
41
|
+
assigns(:entity).should be(mock_entity)
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
describe "POST create" do
|
46
|
+
describe "with valid params" do
|
47
|
+
it "assigns a newly created entity as @entity" do
|
48
|
+
Entity.stub(:new).with({'these' => 'params'}) { mock_entity(:save => true) }
|
49
|
+
post :create, :entity => {'these' => 'params'}
|
50
|
+
assigns(:entity).should be(mock_entity)
|
51
|
+
end
|
52
|
+
|
53
|
+
it "redirects to the created entity" do
|
54
|
+
Entity.stub(:new) { mock_entity(:save => true) }
|
55
|
+
post :create, :entity => {}
|
56
|
+
response.should redirect_to(entity_url(mock_entity))
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
describe "with invalid params" do
|
61
|
+
it "assigns a newly created but unsaved entity as @entity" do
|
62
|
+
Entity.stub(:new).with({'these' => 'params'}) { mock_entity(:save => false) }
|
63
|
+
post :create, :entity => {'these' => 'params'}
|
64
|
+
assigns(:entity).should be(mock_entity)
|
65
|
+
end
|
66
|
+
|
67
|
+
it "re-renders the 'new' template" do
|
68
|
+
Entity.stub(:new) { mock_entity(:save => false) }
|
69
|
+
post :create, :entity => {}
|
70
|
+
response.should render_template("new")
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
describe "PUT update" do
|
76
|
+
describe "with valid params" do
|
77
|
+
it "updates the requested entity" do
|
78
|
+
Entity.stub(:find).with("37") { mock_entity }
|
79
|
+
mock_entity.should_receive(:update_attributes).with({'these' => 'params'})
|
80
|
+
put :update, :id => "37", :entity => {'these' => 'params'}
|
81
|
+
end
|
82
|
+
|
83
|
+
it "assigns the requested entity as @entity" do
|
84
|
+
Entity.stub(:find) { mock_entity(:update_attributes => true) }
|
85
|
+
put :update, :id => "1"
|
86
|
+
assigns(:entity).should be(mock_entity)
|
87
|
+
end
|
88
|
+
|
89
|
+
it "redirects to the entity" do
|
90
|
+
Entity.stub(:find) { mock_entity(:update_attributes => true) }
|
91
|
+
put :update, :id => "1"
|
92
|
+
response.should redirect_to(entity_url(mock_entity))
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
96
|
+
describe "with invalid params" do
|
97
|
+
it "assigns the entity as @entity" do
|
98
|
+
Entity.stub(:find) { mock_entity(:update_attributes => false) }
|
99
|
+
put :update, :id => "1"
|
100
|
+
assigns(:entity).should be(mock_entity)
|
101
|
+
end
|
102
|
+
|
103
|
+
it "re-renders the 'edit' template" do
|
104
|
+
Entity.stub(:find) { mock_entity(:update_attributes => false) }
|
105
|
+
put :update, :id => "1"
|
106
|
+
response.should render_template("edit")
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
111
|
+
describe "DELETE destroy" do
|
112
|
+
it "destroys the requested entity" do
|
113
|
+
Entity.stub(:find).with("37") { mock_entity }
|
114
|
+
mock_entity.should_receive(:destroy)
|
115
|
+
delete :destroy, :id => "37"
|
116
|
+
end
|
117
|
+
|
118
|
+
it "redirects to the entities list" do
|
119
|
+
Entity.stub(:find) { mock_entity }
|
120
|
+
delete :destroy, :id => "1"
|
121
|
+
response.should redirect_to(entities_url)
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
end
|
@@ -0,0 +1,125 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
# This spec was generated by rspec-rails when you ran the scaffold generator.
|
4
|
+
# It demonstrates how one might use RSpec to specify the controller code that
|
5
|
+
# was generated by the Rails when you ran the scaffold generator.
|
6
|
+
|
7
|
+
describe PlatformsController do
|
8
|
+
|
9
|
+
def mock_platform(stubs={})
|
10
|
+
@mock_platform ||= mock_model(Platform, stubs).as_null_object
|
11
|
+
end
|
12
|
+
|
13
|
+
describe "GET index" do
|
14
|
+
it "assigns all platforms as @platforms" do
|
15
|
+
Platform.stub(:all) { [mock_platform] }
|
16
|
+
get :index
|
17
|
+
assigns(:platforms).should eq([mock_platform])
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
describe "GET show" do
|
22
|
+
it "assigns the requested platform as @platform" do
|
23
|
+
Platform.stub(:find).with("37") { mock_platform }
|
24
|
+
get :show, :id => "37"
|
25
|
+
assigns(:platform).should be(mock_platform)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
describe "GET new" do
|
30
|
+
it "assigns a new platform as @platform" do
|
31
|
+
Platform.stub(:new) { mock_platform }
|
32
|
+
get :new
|
33
|
+
assigns(:platform).should be(mock_platform)
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
describe "GET edit" do
|
38
|
+
it "assigns the requested platform as @platform" do
|
39
|
+
Platform.stub(:find).with("37") { mock_platform }
|
40
|
+
get :edit, :id => "37"
|
41
|
+
assigns(:platform).should be(mock_platform)
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
describe "POST create" do
|
46
|
+
describe "with valid params" do
|
47
|
+
it "assigns a newly created platform as @platform" do
|
48
|
+
Platform.stub(:new).with({'these' => 'params'}) { mock_platform(:save => true) }
|
49
|
+
post :create, :platform => {'these' => 'params'}
|
50
|
+
assigns(:platform).should be(mock_platform)
|
51
|
+
end
|
52
|
+
|
53
|
+
it "redirects to the created platform" do
|
54
|
+
Platform.stub(:new) { mock_platform(:save => true) }
|
55
|
+
post :create, :platform => {}
|
56
|
+
response.should redirect_to(platform_url(mock_platform))
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
describe "with invalid params" do
|
61
|
+
it "assigns a newly created but unsaved platform as @platform" do
|
62
|
+
Platform.stub(:new).with({'these' => 'params'}) { mock_platform(:save => false) }
|
63
|
+
post :create, :platform => {'these' => 'params'}
|
64
|
+
assigns(:platform).should be(mock_platform)
|
65
|
+
end
|
66
|
+
|
67
|
+
it "re-renders the 'new' template" do
|
68
|
+
Platform.stub(:new) { mock_platform(:save => false) }
|
69
|
+
post :create, :platform => {}
|
70
|
+
response.should render_template("new")
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
describe "PUT update" do
|
76
|
+
describe "with valid params" do
|
77
|
+
it "updates the requested platform" do
|
78
|
+
Platform.stub(:find).with("37") { mock_platform }
|
79
|
+
mock_platform.should_receive(:update_attributes).with({'these' => 'params'})
|
80
|
+
put :update, :id => "37", :platform => {'these' => 'params'}
|
81
|
+
end
|
82
|
+
|
83
|
+
it "assigns the requested platform as @platform" do
|
84
|
+
Platform.stub(:find) { mock_platform(:update_attributes => true) }
|
85
|
+
put :update, :id => "1"
|
86
|
+
assigns(:platform).should be(mock_platform)
|
87
|
+
end
|
88
|
+
|
89
|
+
it "redirects to the platform" do
|
90
|
+
Platform.stub(:find) { mock_platform(:update_attributes => true) }
|
91
|
+
put :update, :id => "1"
|
92
|
+
response.should redirect_to(platform_url(mock_platform))
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
96
|
+
describe "with invalid params" do
|
97
|
+
it "assigns the platform as @platform" do
|
98
|
+
Platform.stub(:find) { mock_platform(:update_attributes => false) }
|
99
|
+
put :update, :id => "1"
|
100
|
+
assigns(:platform).should be(mock_platform)
|
101
|
+
end
|
102
|
+
|
103
|
+
it "re-renders the 'edit' template" do
|
104
|
+
Platform.stub(:find) { mock_platform(:update_attributes => false) }
|
105
|
+
put :update, :id => "1"
|
106
|
+
response.should render_template("edit")
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
111
|
+
describe "DELETE destroy" do
|
112
|
+
it "destroys the requested platform" do
|
113
|
+
Platform.stub(:find).with("37") { mock_platform }
|
114
|
+
mock_platform.should_receive(:destroy)
|
115
|
+
delete :destroy, :id => "37"
|
116
|
+
end
|
117
|
+
|
118
|
+
it "redirects to the platforms list" do
|
119
|
+
Platform.stub(:find) { mock_platform }
|
120
|
+
delete :destroy, :id => "1"
|
121
|
+
response.should redirect_to(platforms_url)
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
end
|