使用 Ruby 1.9.2 和 Rspec 2.5 的缓慢测试套件
我已经使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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?
您可能想尝试像 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