Sha256: 3c0c2075acc479f45a49cb0675b3220bb60fa03d94e15530a5fd628e63baa759

Contents?: true

Size: 492 Bytes

Versions: 62

Compression:

Stored size: 492 Bytes

Contents

require 'test_helper'

module Workarea
  class Content
    class EmailTest < TestCase
      def test_find_by_type
        Email.create!(type: 'type1', content: 'foo')
        Email.create!(type: 'type2', content: 'bar')

        email = Email.find_by_type('type1')
        assert_equal('foo', email.content)
      end

      def test_name
        email = Email.create!(type: 'account_creation', content: 'foo')
        assert_equal('Account Creation', email.name)
      end
    end
  end
end

Version data entries

62 entries across 62 versions & 1 rubygems

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