Sha256: 4034ba7dd09401fe38665a73bd2e14084cc2dbc198c1847706419c2b61155c7f

Contents?: true

Size: 356 Bytes

Versions: 62

Compression:

Stored size: 356 Bytes

Contents

require 'test_helper'

module Workarea
  class NormalizeEmailTest < TestCase
    class FooModel
      include Mongoid::Document
      include NormalizeEmail

      field :email
    end

    def test_downcases_the_email_address
      model = FooModel.create(email: 'TEST@workarea.com')
      assert_equal('test@workarea.com', model.email)
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-core-3.5.27 test/models/workarea/normalize_email_test.rb
workarea-core-3.5.26 test/models/workarea/normalize_email_test.rb
workarea-core-3.4.45 test/models/workarea/normalize_email_test.rb
workarea-core-3.5.25 test/models/workarea/normalize_email_test.rb
workarea-core-3.5.23 test/models/workarea/normalize_email_test.rb
workarea-core-3.4.44 test/models/workarea/normalize_email_test.rb
workarea-core-3.5.22 test/models/workarea/normalize_email_test.rb
workarea-core-3.4.43 test/models/workarea/normalize_email_test.rb
workarea-core-3.5.21 test/models/workarea/normalize_email_test.rb
workarea-core-3.4.42 test/models/workarea/normalize_email_test.rb
workarea-core-3.5.20 test/models/workarea/normalize_email_test.rb
workarea-core-3.4.41 test/models/workarea/normalize_email_test.rb
workarea-core-3.5.19 test/models/workarea/normalize_email_test.rb
workarea-core-3.4.40 test/models/workarea/normalize_email_test.rb
workarea-core-3.5.18 test/models/workarea/normalize_email_test.rb
workarea-core-3.4.39 test/models/workarea/normalize_email_test.rb
workarea-core-3.5.17 test/models/workarea/normalize_email_test.rb
workarea-core-3.4.38 test/models/workarea/normalize_email_test.rb
workarea-core-3.5.16 test/models/workarea/normalize_email_test.rb
workarea-core-3.4.37 test/models/workarea/normalize_email_test.rb