如果我有一些测试,例如
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