Sha256: 9dc1f27a5ec17f2b9c61ad5b45c7e86bf7645746a86d419bc3e6170f4992c914
Contents?: true
Size: 1.26 KB
Versions: 3
Compression:
Stored size: 1.26 KB
Contents
$testing=true SPEC = File.dirname(__FILE__) $:.unshift File.expand_path("#{SPEC}/../lib") require 'sum' require 'pp' Spec::Runner.configure do |config| end def create_valid_user User.create( :email => "cucumber@sumapp.com", :bills => "1000.02", :income => "2500.54", :savings => "500.02", :timezone_offset => "-25200", :tos => '1' ) end # For use with rspec textmate bundle def debug(object) puts "<pre>" puts object.pretty_inspect.gsub('<', '<').gsub('>', '>') puts "</pre>" end def generate_email(options={}) <<EMAIL Delivered-To: test@sumapp.com Return-Path: <#{options[:from] || 'cucumber@sumapp.com'}> From: Winton Welsh <#{options[:from] || 'cucumber@sumapp.com'}> To: test@sumapp.com Subject: #{options[:subject] || ''} Content-Type: multipart/alternative; boundary=000325574d2a5057e1046eae4ba5 --000325574d2a5057e1046eae4ba5 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit #{options[:body] || ''} --000325574d2a5057e1046eae4ba5 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit #{options[:body] || ''}<br> --000325574d2a5057e1046eae4ba5-- EMAIL end def migrate_reset orig_stdout = $stdout $stdout = File.new('/dev/null', 'w') $db.migrate_reset $stdout = orig_stdout end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
winton-sum-0.1.1 | spec/spec_helper.rb |
sum-0.1.2 | spec/spec_helper.rb |
sum-0.1.1 | spec/spec_helper.rb |