如何运行 Ruby gem 的规范?

发布于 2024-12-14 07:56:04 字数 112 浏览 1 评论 0原文

我已经分叉了一个 ruby​​ gem 并做了一些更新。我需要运行 gem 测试并添加新测试并确保所有测试都成功。

分叉的 ruby​​ gem 使用 rspec 测试。我怎样才能运行这些测试?

I have forked a ruby gem and made some updates. I need to run the gem tests and add my new tests and ensure all tests are succeeding.

The forked ruby gem is using rspec tests. How can I run these test?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

陈年往事 2024-12-21 07:56:04

通常,rake 足以运行所有测试,无论它们是 RSpec、Cucumber 等。如果您想直接调用 RSpec,请尝试运行 rspec spec,或者如果 gem 使用非常规命名的测试目录,只需使用 rspec

注意: 现在大多数新的 gems 使用 Bundler 来管理依赖项,因此如果您没有适当的依赖项并且根目录中有 Gemfile,请先运行“bundle install”来获取它们。然后使用bundle exec ...运行(例如bundle exec rspec spec)。

Usually rake is sufficient to run all the tests, regardless of whether they're RSpec, Cucumber, etc. If you want to invoke RSpec directly try running rspec spec instead, or if the gem is using an unconventionally named test directory, just use rspec <directory_name>.

Note: Most new gems these days use Bundler to manage dependencies, so if you don't have the appropriate dependencies and there's a Gemfile in the root, then run "bundle install" first to get them. Then run with bundle exec ... (e.g., bundle exec rspec spec).

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