如何用Rspec模拟[]函数?

时间:2017-10-08 03:21:56

标签: rspec

使用Rspec,我可以模拟Dir.glob("/my/dir/*.tmp")这样做:

expect(Dir).to receive(:glob).with("/my/dir/*.tmp")

我如何模仿Dir["/my/dir/*.tmp"]

1 个答案:

答案 0 :(得分:0)

expect(Dir).to receive(:"[]").with("/my/dir/*.tmp")