如何为 Kaminari 的生产和测试配置不同的页面大小
我正在运行一些 rspec 单元测试,涉及通过 kaminari 分页获取数据,但我们应用程序的默认页面大小是 20,而 2 可以很好地进行测试。
如何为测试的默认 kaminari 页面大小设置不同的配置,或者如何在测试的 rspec 设置期间进行设置?
I'm running some rspec unit tests involving getting data back through kaminari paging, but the default page size for our application is 20, whereas 2 would work fine for test.
How do a set a different configuration for the default kaminari page size for test, or how do I set it up during the rspec setup for the test?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的模型中,您可以覆盖默认的 per_page:
In your model you can override the default per_page:
不。您应该尽可能类似于生产环境来测试数据。
Don't. You are supposed to test the data as similar to the production environment as possible.