我希望添加一些别名,以更轻松地对我的测试调用binding.pry调用。紧接着在“ RSpec 3中的有效测试”一书中指出,将以下内容添加到我的rspec配置中。
RSpec.configure do |config|
config.alias_example_group_to :pdescribe, pry: true
config.alias_example_to :pit, pry: true
config.after(:example, pry: true) do |ex|
require 'pry'
binding.pry
end
end
但是,当我尝试添加#pit或#pdescribe时 它在config.after(:example)属性中调用binding.pry。
我在这里错过了什么吗?