summaryrefslogtreecommitdiff
path: root/test/functional/person_controller_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/person_controller_test.rb')
-rw-r--r--test/functional/person_controller_test.rb88
1 files changed, 88 insertions, 0 deletions
diff --git a/test/functional/person_controller_test.rb b/test/functional/person_controller_test.rb
new file mode 100644
index 0000000..62c55e5
--- /dev/null
+++ b/test/functional/person_controller_test.rb
@@ -0,0 +1,88 @@
+require File.dirname(__FILE__) + '/../test_helper'
+require 'person_controller'
+
+# Re-raise errors caught by the controller.
+class PersonController; def rescue_action(e) raise e end; end
+
+class PersonControllerTest < Test::Unit::TestCase
+ fixtures :person
+
+ def setup
+ @controller = PersonController.new
+ @request = ActionController::TestRequest.new
+ @response = ActionController::TestResponse.new
+ end
+
+ def test_index
+ get :index
+ assert_response :success
+ assert_template 'list'
+ end
+
+ def test_list
+ get :list
+
+ assert_response :success
+ assert_template 'list'
+
+ assert_not_nil assigns(:people)
+ end
+
+ def test_show
+ get :show, :id => 1
+
+ assert_response :success
+ assert_template 'show'
+
+ assert_not_nil assigns(:person)
+ assert assigns(:person).valid?
+ end
+
+ def test_new
+ get :new
+
+ assert_response :success
+ assert_template 'new'
+
+ assert_not_nil assigns(:person)
+ end
+
+ def test_create
+ num_people = Person.count
+
+ post :create, :person => {}
+
+ assert_response :redirect
+ assert_redirected_to :action => 'list'
+
+ assert_equal num_people + 1, Person.count
+ end
+
+ def test_edit
+ get :edit, :id => 1
+
+ assert_response :success
+ assert_template 'edit'
+
+ assert_not_nil assigns(:person)
+ assert assigns(:person).valid?
+ end
+
+ def test_update
+ post :update, :id => 1
+ assert_response :redirect
+ assert_redirected_to :action => 'show', :id => 1
+ end
+
+ def test_destroy
+ assert_not_nil Person.find(1)
+
+ post :destroy, :id => 1
+ assert_response :redirect
+ assert_redirected_to :action => 'list'
+
+ assert_raise(ActiveRecord::RecordNotFound) {
+ Person.find(1)
+ }
+ end
+end