4

鉴于以下辅助方法,我将如何正确地使用rspec

  def datatable(rows = [], headers = [])
    render 'shared/datatable', { :rows => rows, :headers => headers }
  end

  def table(headers = [], data = [])
    render 'shared/table', headers: headers, data: data
  end

我尝试了以下方法,但出现错误:can't convert nil into String

describe 'datatable' do
  it 'renders the datatable partial' do
    rows = []
    headers = []
    helper.should_receive('render').with(any_args)
    datatable(rows, headers)
  end
end

Rspec 输出

Failures:

  1) ApplicationHelper datatable renders the datatable partial
     Failure/Error: datatable(rows, headers)
     TypeError:
       can't convert nil into String
     # ./app/helpers/application_helper.rb:26:in `datatable'
     # ./spec/helpers/application_helper_spec.rb:45:in `block (3 levels) in <top (required)>'

./app/helpers/application_helper.rb:26

render 'shared/datatable', { :rows => rows, :headers => headers }

意见/共享/_datatable.html.haml

= table headers, rows

意见/共享/_table.html.haml

%table.table.dataTable
  %thead
    %tr
      - headers.each do |header|
        %th= header
  %tbody
    - data.each do |columns|
      %tr
        - columns.each do |column|
          %td= column
4

4 回答 4

8

如果您只想测试您的助手是否使用正确的参数调用正确的部分,您可以执行以下操作:

describe ApplicationHelper do

  let(:helpers) { ApplicationController.helpers }

  it 'renders the datatable partial' do
    rows    = double('rows')
    headers = double('headers')

    helper.should_receive(:render).with('shared/datatable', headers: headers, rows: rows)

    helper.datatable(rows, headers)
  end

end

请注意,这不会调用您部分中的实际代码。

于 2013-06-25T18:38:02.893 回答
1

的参数should_receive应该是一个符号而不是字符串。至少我还没有看到文档中使用了字符串(https://www.relishapp.com/rspec/rspec-mocks/v/2-14/docs/message-expectations

所以,而不是

helper.should_receive('render').with(any_args)

用这个

helper.should_receive(:render).with(any_args)

不确定这是否可以解决问题,但至少这是一个错误,可能会导致您的错误消息。

于 2013-06-21T13:31:21.237 回答
1

尝试:

describe 'datatable' do
  it 'renders the datatable partial' do
    rows = []
    headers = []
    helper.should_receive(:render).with(any_args)
    helper.datatable(rows, headers)
  end
end

帮助规范文档对此进行了解释: https ://www.relishapp.com/rspec/rspec-rails/v/2-0/docs/helper-specs/helper-spec

错误消息非常混乱,我不知道为什么。

于 2013-06-24T01:44:32.413 回答
0

这里你有转换问题

无法将 nil 转换为字符串

您将 2 个空数组作为参数传递给函数,但 ruby​​ 中的空数组不是 nil,那么渲染的参数应该是字符串,不确定但尝试将测试中的参数转换为字符串,如下所示:

datatable(rows.to_s, headers.to_s)
于 2013-06-21T14:28:58.217 回答