92 lines
1.8 KiB
Ruby
92 lines
1.8 KiB
Ruby
require File.dirname(__FILE__) + '/../test_helper'
|
|
require 'messages_controller'
|
|
|
|
# Re-raise errors caught by the controller.
|
|
class MessagesController; def rescue_action(e) raise e end; end
|
|
|
|
class MessagesControllerTest < Test::Unit::TestCase
|
|
fixtures :messages
|
|
|
|
def setup
|
|
@controller = MessagesController.new
|
|
@request = ActionController::TestRequest.new
|
|
@response = ActionController::TestResponse.new
|
|
|
|
@first_id = messages(: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(:messages)
|
|
end
|
|
|
|
def test_show
|
|
get :show, :id => @first_id
|
|
|
|
assert_response :success
|
|
assert_template 'show'
|
|
|
|
assert_not_nil assigns(:messages)
|
|
assert assigns(:messages).valid?
|
|
end
|
|
|
|
def test_new
|
|
get :new
|
|
|
|
assert_response :success
|
|
assert_template 'new'
|
|
|
|
assert_not_nil assigns(:messages)
|
|
end
|
|
|
|
def test_create
|
|
num_messages = Messages.count
|
|
|
|
post :create, :messages => {}
|
|
|
|
assert_response :redirect
|
|
assert_redirected_to :action => 'list'
|
|
|
|
assert_equal num_messages + 1, Messages.count
|
|
end
|
|
|
|
def test_edit
|
|
get :edit, :id => @first_id
|
|
|
|
assert_response :success
|
|
assert_template 'edit'
|
|
|
|
assert_not_nil assigns(:messages)
|
|
assert assigns(:messages).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 {
|
|
Messages.find(@first_id)
|
|
}
|
|
|
|
post :destroy, :id => @first_id
|
|
assert_response :redirect
|
|
assert_redirected_to :action => 'list'
|
|
|
|
assert_raise(ActiveRecord::RecordNotFound) {
|
|
Messages.find(@first_id)
|
|
}
|
|
end
|
|
end
|