Sha256: 51cf9f4e1ffdfbea2b7b7176d83ffebf751cce73c3e744091bdb829ab6635d2e
Contents?: true
Size: 627 Bytes
Versions: 62
Compression:
Stored size: 627 Bytes
Contents
require 'test_helper' module Workarea module DataFile class ExportTest < Workarea::TestCase def test_email_validation export = Export.new(model_type: 'Workarea::Catalog::Product') assert(export.valid?) export.emails = %w(test@workarea.com test2@workarea.com) assert(export.valid?) export.emails = %w(test@workarea.com not_an_email) refute(export.valid?) assert(export.errors[:emails].present?) export.emails = %w(not@an_email not_an_email) refute(export.valid?) assert(export.errors[:emails].present?) end end end end
Version data entries
62 entries across 62 versions & 1 rubygems