模块和类的区别
以下代码会产生错误:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
错误原因是 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