如何测试一个带参数x次的方法?

时间:2016-07-07 11:49:48

标签: ruby rspec rspec3

我创建了一个类SourceReader来解析文件,并根据文件中识别的标记数量生成多次。例如,如果我解析file1.txt,它只会产生值one一次。另一个例子是当我解析file2.txt时,它会产生两次,第一次使用值one,然后使用值two

如何使用rspec正确测试?以下是我到目前为止的情况:

require './spec/spec_helper'

describe SourceReader do
  describe '#each_card' do

    context "given file with one card" do
      input_filename = './spec/data/file1_spec.txt'
      it 'yields once, with arguments "one"' do
        File.open(input_filename, 'r') do |file|
          sut = SourceReader.new(file)
          expect(sut.each_card).to yield_with_args('one')
        end
      end
    end

    context "given file with two cards" do
      input_filename = './spec/data/file2_spec.txt'
      it 'yields twice, with arguments "one", then "two"' do
        # some codes
      end
    end

  end
end

我对如何实现文档

中的expect { |b| object.action(&b) }.to yield_with_args感到困惑

1 个答案:

答案 0 :(得分:1)

arr = []
sut.each_card do |arg|
  arr << arg
end
expect(arr).to eq ['one', 'two']