Sha256: 4b2d7b60638a8fec76c995e888eb54047a48148acf280e03cb305f3f0bc4029b

Contents?: true

Size: 1.19 KB

Versions: 47

Compression:

Stored size: 1.19 KB

Contents

$:.reject! { |e| e.include? 'TextMate' }
ENV["RAILS_ENV"] = "test"
require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
require 'test_help'
gem 'thoughtbot-factory_girl' # from github
require 'factory_girl'
require 'mocha'
require 'authlogic/test_case'
require 'redgreen' rescue LoadError
require File.expand_path(File.dirname(__FILE__) + '/factories')
require File.join(File.dirname(__FILE__), 'shoulda_macros', 'controller')
require File.join(File.dirname(__FILE__), 'shoulda_macros', 'models')

class ActiveSupport::TestCase 
  self.use_transactional_fixtures = true
  self.use_instantiated_fixtures  = false

  include Authlogic::TestCase
  
  def login_as(user)
    success = UserSession.create(user)
    if !success
      errors = user.errors.full_messages.to_sentence
      message = 'User has not been activated' if !user.active?
      raise "could not login as #{user.to_param}.  Please make sure the user is valid. #{message} #{errors}"
    end
    UserSession.find
  end
  
  def assure_logout
    user_session = UserSession.find
    user_session.destroy if user_session
  end
  
  def ensure_flash(val)
    assert_contains flash.values, val, ", Flash: #{flash.inspect}"
  end
end

Version data entries

47 entries across 47 versions & 4 rubygems

Version Path
muck-profiles-0.1.15 test/rails_root/test/test_helper.rb
muck-friends-0.1.15 test/rails_root/test/test_helper.rb
muck-profiles-0.1.14 test/rails_root/test/test_helper.rb
muck-friends-0.1.14 test/rails_root/test/test_helper.rb
muck-profiles-0.1.13 test/rails_root/test/test_helper.rb
muck-friends-0.1.13 test/rails_root/test/test_helper.rb
muck-friends-0.1.12 test/rails_root/test/test_helper.rb
muck-profiles-0.1.12 test/rails_root/test/test_helper.rb
muck-profiles-0.1.11 test/rails_root/test/test_helper.rb
muck-friends-0.1.11 test/rails_root/test/test_helper.rb
muck-profiles-0.1.10 test/rails_root/test/test_helper.rb
muck-friends-0.1.10 test/rails_root/test/test_helper.rb
muck-profiles-0.1.7 test/rails_root/test/test_helper.rb
muck-profiles-0.1.8 test/rails_root/test/test_helper.rb
muck-profiles-0.1.9 test/rails_root/test/test_helper.rb
muck-friends-0.1.5 test/rails_root/test/test_helper.rb
muck-friends-0.1.6 test/rails_root/test/test_helper.rb
muck-friends-0.1.7 test/rails_root/test/test_helper.rb
muck-friends-0.1.8 test/rails_root/test/test_helper.rb
muck-friends-0.1.9 test/rails_root/test/test_helper.rb