categories_controller_test.rb

来自「用ruby on rails写的一个博客程序,还不错..ruby on rail」· RB 代码 · 共 113 行

RB
113
字号
require File.dirname(__FILE__) + '/../../test_helper'require 'admin/categories_controller'# Re-raise errors caught by the controller.class Admin::CategoriesController; def rescue_action(e) raise e end; endclass Admin::CategoriesControllerTest < Test::Unit::TestCase  fixtures :categories, :users  def setup    @controller = Admin::CategoriesController.new    @request    = ActionController::TestRequest.new    @response   = ActionController::TestResponse.new    @request.session = { :user => users(:tobi) }  end  def test_index    get :index    assert_template 'list'    assert_template_has 'categories'  end  def test_list    get :list    assert_template 'list'    assert_template_has 'categories'    assert_tag :tag => "div",      :attributes => { :id => "category_container" }  end  def test_show    get :show, 'id' => 1    assert_template 'show'    assert_template_has 'category'    assert_valid assigns(:category)  end  def test_create    num_categories = Category.count    post :new, 'category' => { :name => "test category" }    assert_response :redirect, :action => 'list'    assert_equal num_categories + 1, Category.count  end  def test_edit    get :edit, :id => 1    assert_template 'edit'    assert_template_has 'category'    assert_valid assigns(:category)  end  def test_update    post :edit, :id => 1    assert_response :redirect, :action => 'list'  end  def test_destroy    assert_not_nil Category.find(1)    get :destroy, :id => 1    assert_response :success    assert_template 'destroy'    post :destroy, :id => 1    assert_response :redirect, :action => 'list'    assert_raise(ActiveRecord::RecordNotFound) { Category.find(1) }  end  def test_order    assert_equal categories(:software), Category.find(:first, :order => :position)    get :order, :category_list => [categories(:personal).id, categories(:hardware).id, categories(:software).id]    assert_response :success    assert_equal categories(:personal), Category.find(:first, :order => :position)  end  def test_asort    assert_equal categories(:software), Category.find(:first, :order => :position)    get :asort    assert_response :success    assert_template "_categories"    assert_equal categories(:hardware), Category.find(:first, :order => :position)  end  def test_category_container    get :category_container    assert_response :success    assert_template "_categories"    assert_tag :tag => "table",      :children => { :count => Category.count,        :only => { :tag => "tr",          :children => { :count => 6,            :only => { :tag => /t[dh]/ } } } }  end  def test_reorder    get :reorder    assert_response :success    assert_template "reorder"    assert_tag :tag => "ul",      :attributes => { :id => "category_list" },      :children => { :count => Category.count,        :only => { :tag => "li",          :attributes => { :id => /category_\d+/ } } }    assert_tag :tag => "a",      :content => "(Done)"  endend

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?