我有一个简单的方法来测试我的一个Rails控制器中的index
动作。在最小的情况下,它会向GET /{resource}
get :index, format: :json
发送请求。
在index
的控制器操作中,我有几行puts some_var
。从命令行运行测试时,如何从控制器操作中查看此输出?
向服务器发送请求时输出,但从命令行运行测试时不会出现。
答案 0 :(得分:0)
控制器:
class FooController < ApplicationController
def bar
puts 'hello'
end
end
试验:
require 'test_helper'
class FooControllerTest < ActionController::TestCase
test 'outputs hello' do
assert_output(/hello/) do # use regex because "hello" will fail per http://stackoverflow.com/a/26855137/46076
post :bar
end
end
end