gpt4 book ai didi

Ruby-rspec - 如何打印出测试(组)名称

转载 作者:数据小太阳 更新时间:2023-10-29 07:09:49 26 4
gpt4 key购买 nike

如果我有一些测试,例如

  require_relative "Line"
require_relative "LineParser"

describe Line do

it "Can be created" do
load "spec_helper.rb"
@line.class.should == Line
end
it "Can be parsed" do
...

如何打印出测试组名称 - 在本例中为“Line”。

我尝试添加:

    before :all do
puts "In #{self.class}"
end

但这给出了:In RSpec::Core::ExampleGroup::Nested_3,而不是Line

最佳答案

您可能有特定的原因想要在测试时访问测试名称...但是,为了以防万一它满足您的需要,只在测试报告中输出行,我喜欢这种配置:

RSpec.configure do |config|

# Use color in STDOUT
config.color_enabled = true

# Use color not only in STDOUT but also in pagers and files
config.tty = true

# Use the specified formatter
config.formatter = :documentation

end

这给了我这样的输出:

MyClassName
The initialization process
should accept two optional arguments

关于Ruby-rspec - 如何打印出测试(组)名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19372125/

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