Sha256: afc650b823c2a4389e1941eb81e9689ef5e0c8a846cbaad63b4a3da7b4b45307
Contents?: true
Size: 467 Bytes
Versions: 124
Compression:
Stored size: 467 Bytes
Contents
# frozen_string_literal: true RSpec.describe :validate_email do link :validate_email, from: :ree_validator it { expect( validate_email('test@example.com') ).to eq(true) } it { expect { validate_email('test@example') }.to raise_error(ReeValidator::ValidateEmail::InvalidEmailErr) } it { expect { validate_email('test', Class.new(StandardError).new("message")) }.to raise_error(StandardError, "message") } end
Version data entries
124 entries across 124 versions & 1 rubygems