class GeneratorSpec::Matcher::Root

def matches?(root)

def matches?(root)
  root = Pathname.new(root) unless root.is_a?(Pathname)
  @failure = catch :failure do
    super
  end
  !@failure
end