使用 Ruby 1.9.2 和 Rspec 2.5 的缓慢测试套件

发布于 2024-12-17 20:43:35 字数 326 浏览 0 评论 0原文

我已经使用 Ruby 1.9.2 和 Rspec 2 启动了一个 Rails 3 项目,我的 测试套件现在正在增长,我对它所花费的时间并不满意 正在跑。我用 Ruby Enterprise 做了一个基准测试 版本 1.8.7 2011.03,它的运行速度比 Ruby 1.9.2 快得多(5 倍)。

这是预期的还是我缺少什么?要查看结果, Gemfile 和spec_helper.rb 请检查要点 https://gist.github.com/939699

非常感谢任何帮助或提示。

I've started a Rails 3 project using Ruby 1.9.2 and Rspec 2 and my
test suite is now growing and I'm not happy with the amount of time it
is tooking to run. I did a benchmark of it with Ruby Enterprise
Edition 1.8.7 2011.03 and it ran much more faster(5x) than Ruby 1.9.2.

Is it expected or there is something I'm missing? To see the results,
Gemfile and spec_helper.rb please check the gist
https://gist.github.com/939699

Any help or tips are very appreciated.

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

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

发布评论

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

评论(2

涫野音 2024-12-24 20:43:35

rspec 在 1.9.2 上运行自己的规范比在 1.8.7 上更快:
https://gist.github.com/939865

您使用的是哪个版本的rails,以及其他哪些gem在你的
宝石文件?

rspec runs its own specs faster on 1.9.2 than on 1.8.7:
https://gist.github.com/939865

Which version of rails are you using, and what other gems are in your
Gemfile?

甜心小果奶 2024-12-24 20:43:35

您可能想尝试像 Spork 这样的东西,以避免每次需要运行测试时都必须加载应用程序。我发现使用它可以节省大量时间。

以下链接是一个 Railscast,其中对 Spork 进行了很好的介绍:
http://railscasts.com/episodes/285-spork

You may want to try something like Spork to keep from having to load the application each time it needs to run the tests. I have found the time savings using it to be pretty significant.

The following link is a railscast with a pretty good introduction to Spork:
http://railscasts.com/episodes/285-spork

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