Rails Minitest,查看控制器的输出

时间:2016-02-15 21:28:23

标签: ruby-on-rails minitest

我有一个简单的方法来测试我的一个Rails控制器中的index动作。在最小的情况下,它会向GET /{resource} get :index, format: :json发送请求。

index的控制器操作中,我有几行puts some_var。从命令行运行测试时,如何从控制器操作中查看此输出?

向服务器发送请求时输出,但从命令行运行测试时不会出现。

1 个答案:

答案 0 :(得分:0)

你想:assert_output

控制器:

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