Show More
Commit Description:
initial commit...
Commit Description:
initial commit git-svn-id: http://theory.cpe.ku.ac.th/grader/web/trunk@1 6386c4cd-e34a-4fa8-8920-d93eb39b512e
References:
File last commit:
Show/Diff file:
Action:
test/functional/user_admin_controller_test.rb | 92 lines | 1.8 KiB | text/x-ruby | RubyLexer |
pramook
initial commit...
r0 require File.dirname(__FILE__) + '/../test_helper'
require 'user_admin_controller'
# Re-raise errors caught by the controller.
class UserAdminController; def rescue_action(e) raise e end; end
class UserAdminControllerTest < Test::Unit::TestCase
fixtures :users
def setup
@controller = UserAdminController.new
@request = ActionController::TestRequest.new
@response = ActionController::TestResponse.new
@first_id = users(:first).id
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(:users)
end
def test_show
get :show, :id => @first_id
assert_response :success
assert_template 'show'
assert_not_nil assigns(:user)
assert assigns(:user).valid?
end
def test_new
get :new
assert_response :success
assert_template 'new'
assert_not_nil assigns(:user)
end
def test_create
num_users = User.count
post :create, :user => {}
assert_response :redirect
assert_redirected_to :action => 'list'
assert_equal num_users + 1, User.count
end
def test_edit
get :edit, :id => @first_id
assert_response :success
assert_template 'edit'
assert_not_nil assigns(:user)
assert assigns(:user).valid?
end
def test_update
post :update, :id => @first_id
assert_response :redirect
assert_redirected_to :action => 'show', :id => @first_id
end
def test_destroy
assert_nothing_raised {
User.find(@first_id)
}
post :destroy, :id => @first_id
assert_response :redirect
assert_redirected_to :action => 'list'
assert_raise(ActiveRecord::RecordNotFound) {
User.find(@first_id)
}
end
end