6

这是我的控制器:

class MyController < ApplicationController
  include MyHelper

  def index
    get_list_from_params do |list|
      @list = list
      respond_to do |format|
        format.html
        format.xml  { render :xml => @list }
        format.json { render :json => @list }
      end
    end
  end
end

...它所基于的助手:

module MyHelper
  def get_list_from_params(param = :id, &on_success)
    raw_id = params[param]
    begin
      id = Integer(raw_id)
    rescue
      render :template => "invalid_id", :locals => {:id => raw_id }
    else
      yield MyList.new(id)
    end
  end
end

...以及我的功能测试(使用的是 Shoulda):

class MyControllerTest < ActionController::TestCase
  context "MyController index" do
    setup do
      get :index
    end

    should_respond_with :success
  end
end

编辑我的 rcov rake 与官方常见问题解答中列出的完全相同:eigenclass.org

RCov (0.9.7.1) 将控制器中直到“def index”的每一行列为绿色,之后的每一行(包括所有“结束”)列为红色/未执行。我知道当我的测试实际执行时,它确实成功地执行了代码。

为什么 RCov 给出不直观的结果?我在这里缺少什么吗?

4

2 回答 2

3

我猜你使用的是 ruby​​ 1.9?Rcov 不支持 ruby​​ 1.9 并产生不可预测的结果。请改用SimpleCov

于 2011-04-14T12:27:17.747 回答
1

我的猜测是 rcov 仅将在实际测试用例中运行的代码视为测试“覆盖”。您对“获取索引”的调用在技术上不是在测试用例中,而是在设置块中。shoulda 在设置方面存在有趣的范围问题,也许 rcov 还不够聪明,无法意识到这一点。

尝试将代码放入测试用例块(见下文) - 只是看看这是否会改变事情。注意:我认为你不应该像这样运行你的测试——这只是为了看看它是否有效。

context "MyController index" do
  should "respond with success" do
    get :index     
    assert_response :success
  end
end
于 2010-02-22T14:42:09.447 回答