# File lib/cucumber/step_mother.rb, line 63
    def load_plain_text_features(feature_files)
      features = Ast::Features.new

      log.debug("Features:\n")
      feature_files.each do |f|
        feature_file = FeatureFile.new(f)
        feature = feature_file.parse(self, options)
        if feature
          features.add_feature(feature)
          log.debug("  * #{f}\n")
        end
      end
      log.debug("\n")
      features
    end