module Support
  module Helpers
    class UniqueGenerator
      def self.unique_string
        time = Time.now.to_i
        time.to_s
      end

      def self.unique_email
        "#{unique_string}@theorchard.com"
      end
    end
  end
end
