stormy-weather/test/mock-pony.rb
2012-02-05 22:01:28 -08:00

19 lines
247 B
Ruby

# Copyright 2012 Sami Samhuri <sami@samhuri.net>
require 'rubygems'
require 'bundler/setup'
require 'pony'
module Pony
@@sent_mail = []
def self.mail(options)
sent_mail << options
end
def self.sent_mail
@@sent_mail
end
end