gpt4 book ai didi

ruby - 无方法错误 : undefined method `assert_true'

转载 作者:太空宇宙 更新时间:2023-11-03 18:16:05 25 4
gpt4 key购买 nike

NoMethodError: undefined method `assert_true'

在 ruby​​ 中使用测试单元运行测试时出现上述错误。测试单元 gem 和 rake 版本如下,

test-unit (2.5.5)
rake (10.1.0)

示例测试文件:-

require 'test/unit'

class Sample < Test::Unit::TestCase

def setup
# code block
end

def test_sample
assert_true("test"=="test")
end

def teardown
# code block
end

end

如何解决?

最佳答案

我用下面的方法解决了这个问题。无需更改断言语句。

require 'rubygems'
gem 'test-unit'
require 'test/unit'

class Sample < Test::Unit::TestCase

def setup
# code block
end

def test_sample
assert_true("test"=="test")
end

def teardown
# code block
end

end

关于ruby - 无方法错误 : undefined method `assert_true' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26010576/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com