Update stdlib
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / functions / is_email_address_spec.rb
1 require 'spec_helper'
2
3 describe 'is_email_address' do
4   it { is_expected.not_to eq(nil) }
5   it { is_expected.to run.with_params().and_raise_error(Puppet::ParseError, /wrong number of arguments/i) }
6   it { is_expected.to run.with_params([], []).and_raise_error(Puppet::ParseError, /wrong number of arguments/i) }
7   it { is_expected.to run.with_params('bob@gmail.com').and_return(true) }
8   it { is_expected.to run.with_params('alice+puppetlabs.com@gmail.com').and_return(true) }
9   it { is_expected.to run.with_params('peter.parker@gmail.com').and_return(true) }
10   it { is_expected.to run.with_params('1.2.3@domain').and_return(false) }
11   it { is_expected.to run.with_params('1.2.3.4.5@').and_return(false) }
12   it { is_expected.to run.with_params({}).and_return(false) }
13   it { is_expected.to run.with_params([]).and_return(false) }
14 end