Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以模拟一个活动记录表吗?不是单个模型对象。
我正在寻找像我们在黄瓜中做的那样。
我认为rspec-activemodel-mocks是您可能正在寻找的。
它提供了两个助手:
mock_model
mock_model(Person, name: "Fred")
stub_model
stub_model(Person).as_new_record
希望这仍然可以帮助某人!