如何规范并非所有型号

发布于 2024-09-28 14:47:08 字数 369 浏览 0 评论 0原文

我知道

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ら栖息 2024-10-05 14:47:08

使用 rspec 命令行(使用 Rspec 2)

rspec spec/models/user_spec.rb

或者如果您想要多个

rspec spec/models/user_spec.rb spec/models/role_spec.rb

创建任务。它。

use the rspec command line ( with Rspec 2)

rspec spec/models/user_spec.rb

or if you want several

rspec spec/models/user_spec.rb spec/models/role_spec.rb

If you want a task for that create. it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文