我花了整整一天的时间来查找如何使用 header 对CSV Foreach stub :在RSPEC中为true,然后对ROW和INDEX使用do块。我尝试了几件事,似乎没有用。

这是我的模特

class Test

  def self.import(file_path)
    CSV.foreach(file_path, headers: true) do |row, index|
     Here the rest of the code to create/insert record
    end
  end

end

然后在rspec上,我尝试了以下几种方法:
describe "Class" do
  context "successfully insert" do
    let(:data) { "name,lastname\nHero,SuperHero}" }

    before do
      # CSV foreach Stub here
      CSV.stub(:foreach).with("file_path", headers: true).and_return(data)
    end

    it "inserts new record" do
      expect do
       Test.import("file_path")
      end.to change(Test, :count).by(1)
    end
  end
end

而且它不起作用,它只会返回CSV.foreach(file_path,headers:true)的数据,但不会转到“do block”。

在这方面的任何帮助,

非常感谢你

最佳答案

我认为您需要在此处使用and_yield而不是and_return

检查rspec-mocks的自述文件:https://github.com/rspec/rspec-mocks

关于ruby-on-rails - 带 header : true的rspec stub CSV Foreach,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22653915/

10-14 13:40