模块和类的区别

发布于 2024-11-18 12:35:20 字数 341 浏览 4 评论 0原文

以下代码会产生错误:

require 'test/unit'

Test::Unit.setup_argv(["tests"])

$ run_tests.rb:4: undefined method `setup_argv' for Test::Unit:Module (NoMethodError)

How can I make I make Ruby use the Test::Unit class 而不是 Test::Unit module 进行方法调用?

编辑 Ruby 1.8.7

The following yields an error:

require 'test/unit'

Test::Unit.setup_argv(["tests"])

$ run_tests.rb:4: undefined method `setup_argv' for Test::Unit:Module (NoMethodError)

How can I make Ruby use the Test::Unit class instead of the Test::Unit module for the method call?

EDIT Ruby 1.8.7

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

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

发布评论

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

评论(1

我三岁 2024-11-25 12:35:20

错误原因是 setup_argv 在 Ruby 1.8.7 中不可用。
Test::Unit 始终是一个模块。没有课。

有关如何使用的信息,请参阅此处的 1.8.7 文档:
http://apidock.com/ruby/v1_8_7_330/Test/Unit

The reason for the error is that setup_argv is not available in Ruby 1.8.7.
Test::Unit is always a module. There is no class.

See the 1.8.7 docs here for how to use:
http://apidock.com/ruby/v1_8_7_330/Test/Unit

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