Sha256: b55330ac5e68b22cf49a8b89c852b8650049496477f882c5d4cae2053a1a326e

Contents?: true

Size: 1.13 KB

Versions: 22

Compression:

Stored size: 1.13 KB

Contents

class ActiveSupport::TestCase
  def setup_mailer
    ActionMailer::Base.deliveries = []
  end

  def store_translations(locale, translations, &block)
    begin
      I18n.backend.store_translations locale, translations
      yield
    ensure
      I18n.reload!
    end
  end

  # Helpers for creating new users
  #
  def generate_unique_email
    @@email_count ||= 0
    @@email_count += 1
    "test#{@@email_count}@email.com"
  end

  def valid_attributes(attributes={})
    { :email => generate_unique_email,
      :password => '123456',
      :password_confirmation => '123456' }.update(attributes)
  end

  def new_user(attributes={})
    User.new(valid_attributes(attributes))
  end

  def create_user(attributes={})
    User.create!(valid_attributes(attributes))
  end

  # Execute the block setting the given values and restoring old values after
  # the block is executed.
  def swap(object, new_values)
    old_values = {}
    new_values.each do |key, value|
      old_values[key] = object.send key
      object.send :"#{key}=", value
    end
    yield
  ensure
    old_values.each do |key, value|
      object.send :"#{key}=", value
    end
  end
end

Version data entries

22 entries across 22 versions & 3 rubygems

Version Path
devise-0.7.3 test/support/model_tests_helper.rb
devise-0.7.2 test/support/model_tests_helper.rb
devise-0.7.1 test/support/model_tests_helper.rb
devise-0.7.0 test/support/model_tests_helper.rb
devise-0.6.3 test/support/model_tests_helper.rb
devise-0.6.2 test/support/model_tests_helper.rb
devise-0.6.1 test/support/model_tests_helper.rb
devise-0.6.0 test/support/model_tests_helper.rb
devise-0.5.6 test/support/model_tests_helper.rb
devise-0.5.5 test/support/model_tests_helper.rb
devise-0.5.4 test/support/model_tests_helper.rb
devise-0.5.3 test/support/model_tests_helper.rb
devise-0.5.2 test/support/model_tests_helper.rb
devise-0.5.1 test/support/model_tests_helper.rb
devise-0.5.0 test/support/model_tests_helper.rb
shingara-devise-0.4.3.1 test/support/model_tests_helper.rb
shingara-devise-0.4.3 test/support/model_tests_helper.rb
devise-0.4.3 test/support/model_tests_helper.rb
ramon-devise-0.4.2 test/support/model_tests_helper.rb
devise-0.4.2 test/support/model_tests_helper.rb