# File lib/appraisal/path.rb, line 12
    def to_s
      if @options.empty?
        "path #{Utils.prefix_path(@source).inspect} do\n#{indent(super)}\nend"
      else
        "path #{Utils.prefix_path(@source).inspect}, #{Utils.format_string(@options)} do\n" +
          "#{indent(super)}\nend"
      end
    end