aboutsummaryrefslogtreecommitdiffstats
path: root/railties/generators/scaffold/templates/functional_test.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-02-07 13:14:05 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-02-07 13:14:05 +0000
commitdaee6fd92ac16878f6806c3382a9e74592aa9656 (patch)
treed477c6502960cb141403f8b4640dd483b487e5df /railties/generators/scaffold/templates/functional_test.rb
parent838c5a3d82367977d13ced01f9e28c22ccff32ef (diff)
downloadrails-daee6fd92ac16878f6806c3382a9e74592aa9656.tar.gz
rails-daee6fd92ac16878f6806c3382a9e74592aa9656.tar.bz2
rails-daee6fd92ac16878f6806c3382a9e74592aa9656.zip
Added new generator framework that informs about its doings on generation and enables updating and destruction of generated artifacts. See the new script/destroy and script/update for more details #487 [bitsweat]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@518 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/generators/scaffold/templates/functional_test.rb')
-rw-r--r--railties/generators/scaffold/templates/functional_test.rb79
1 files changed, 0 insertions, 79 deletions
diff --git a/railties/generators/scaffold/templates/functional_test.rb b/railties/generators/scaffold/templates/functional_test.rb
deleted file mode 100644
index 004af030be..0000000000
--- a/railties/generators/scaffold/templates/functional_test.rb
+++ /dev/null
@@ -1,79 +0,0 @@
-require File.dirname(__FILE__) + '/../test_helper'
-require '<%= @controller_name %>_controller'
-
-# Re-raise errors caught by the controller.
-class <%= @controller_class_name %>Controller; def rescue_action(e) raise e end; end
-
-class <%= @controller_class_name %>ControllerTest < Test::Unit::TestCase
- fixtures :<%= table_name %>
-
- def setup
- @controller = <%= @controller_class_name %>Controller.new
- @request, @response = ActionController::TestRequest.new, ActionController::TestResponse.new
- end
-
-<% for action in unscaffolded_actions -%>
- def test_<%= action %>
- process :<%= action %>
- assert_rendered_file '<%= action %>'
- end
-
-<% end -%>
-<% unless suffix -%>
- def test_index
- process :index
- assert_rendered_file 'list'
- end
-
-<% end -%>
- def test_list<%= suffix %>
- process :list<%= suffix %>
- assert_rendered_file 'list<%= suffix %>'
- assert_template_has '<%= plural_name %>'
- end
-
- def test_show<%= suffix %>
- process :show<%= suffix %>, 'id' => 1
- assert_rendered_file 'show'
- assert_template_has '<%= singular_name %>'
- assert_valid_record '<%= singular_name %>'
- end
-
- def test_new<%= suffix %>
- process :new<%= suffix %>
- assert_rendered_file 'new<%= suffix %>'
- assert_template_has '<%= singular_name %>'
- end
-
- def test_create
- num_<%= plural_name %> = <%= class_name %>.find_all.size
-
- process :create<%= suffix %>, '<%= singular_name %>' => { }
- assert_redirected_to :action => 'list<%= suffix %>'
-
- assert_equal num_<%= plural_name %> + 1, <%= class_name %>.find_all.size
- end
-
- def test_edit<%= suffix %>
- process :edit<%= suffix %>, 'id' => 1
- assert_rendered_file 'edit<%= suffix %>'
- assert_template_has '<%= singular_name %>'
- assert_valid_record '<%= singular_name %>'
- end
-
- def test_update<%= suffix %>
- process :update<%= suffix %>, '<%= singular_name %>' => { 'id' => 1 }
- assert_redirected_to :action => 'show<%= suffix %>', :id => 1
- end
-
- def test_destroy<%= suffix %>
- assert_not_nil <%= class_name %>.find(1)
-
- process :destroy, 'id' => 1
- assert_redirected_to :action => 'list<%= suffix %>'
-
- assert_raise(ActiveRecord::RecordNotFound) {
- <%= singular_name %> = <%= class_name %>.find(1)
- }
- end
-end