如何规范并非所有型号
我知道
rake spec:models
所有型号的规格。
有没有办法仅指定一个模型或仅指定给定的模型集合? 像这样的东西将是可取的:
rake spec:model user
或者使用模型集合
rake spec:model user role order
顺便说一句:Brian Hogan 写道创建了类似的东西(请参阅此处) 但也许 rspec2 中有内置的东西
I know
rake spec:models
to spec all models.
Is there a way to spec only one model, or only a given collection of models?
Something like this would be desirable:
rake spec:model user
or with a collection of models
rake spec:model user role order
BTW: Brian Hogan wrote created something similar (see here) but maybe there is something built-in in rspec2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 rspec 命令行(使用 Rspec 2)
或者如果您想要多个
创建任务。它。
use the rspec command line ( with Rspec 2)
or if you want several
If you want a task for that create. it.