标签: rspec
使用Rspec,我可以模拟Dir.glob("/my/dir/*.tmp")这样做:
Dir.glob("/my/dir/*.tmp")
expect(Dir).to receive(:glob).with("/my/dir/*.tmp")
我如何模仿Dir["/my/dir/*.tmp"]?
Dir["/my/dir/*.tmp"]
答案 0 :(得分:0)
expect(Dir).to receive(:"[]").with("/my/dir/*.tmp")