自动测试上的 rspec 堆栈跟踪

发布于 2024-10-13 07:19:52 字数 642 浏览 3 评论 0原文

我刚刚进入自动测试,遇到以下问题。

如何进行自动测试以打印错误的堆栈跟踪。 如果我运行“rake spec”,我会得到输出

  4) Transaction should get date with poor form
 Failure/Error: transaction = Transaction.build_from_email(@email)
 NoMethodError:
   private method `gsub' called for 112:Fixnum
 # ./app/models/transaction.rb:46:in `build_from_email'
 # ./spec/models/transaction_spec.rb:104

,但我会通过自动测试得到以下结果

  4) Transaction should get date with poor form
 Failure/Error: transaction = Transaction.build_from_email(@email)
 NoMethodError:
   private method `gsub' called for 112:Fixnum

,这样会更容易找到错误所在。

非常感谢

I'm just getting into autotest and i have the following problem.

How do I get autotest to print stack traces on errors.
If i run "rake spec" i get output

  4) Transaction should get date with poor form
 Failure/Error: transaction = Transaction.build_from_email(@email)
 NoMethodError:
   private method `gsub' called for 112:Fixnum
 # ./app/models/transaction.rb:46:in `build_from_email'
 # ./spec/models/transaction_spec.rb:104

but i get the following with autotest

  4) Transaction should get date with poor form
 Failure/Error: transaction = Transaction.build_from_email(@email)
 NoMethodError:
   private method `gsub' called for 112:Fixnum

Would just be alot easier to find where the error is.

Thanks a bunch

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

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

发布评论

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

评论(1

何以畏孤独 2024-10-20 07:19:52

如果您使用的是 RSpec 2,您可以在项目根目录中添加一个名为 .rspec 的文件,其中包含以下内容:

--backtrace

RSpec 在运行时将读取此文件,无论是通过 Rake 还是 Autotest。

If you're using RSpec 2 you can add a file called .rspec in the project root with this content:

--backtrace

RSpec will read this file when it's run, whether it's through Rake or Autotest.

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