lib/cucumber/core/ast/empty_background.rb



# frozen_string_literal: true
module Cucumber
  module Core
    module Ast
      class EmptyBackground
        def describe_to(*)
          self
        end

        def inspect
          "#<#{self.class.name}>"
        end
      end
    end
  end
end