edition_controller_test.rb
来自「本书源码对于学习RUBY网络编程语言非常有帮助。」· RB 代码 · 共 19 行
RB
19 行
require File.dirname(__FILE__) + '/../test_helper'require 'edition_controller'# Re-raise errors caught by the controller.class EditionController; def rescue_action(e) raise e end; endclass EditionControllerTest < Test::Unit::TestCase def setup @controller = EditionController.new @request = ActionController::TestRequest.new @response = ActionController::TestResponse.new end # Replace this with your real tests. def test_truth assert true endend
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?