Sha256: 780d94f760b4d4dd75e28ff2bd472125f54eddd841a27351d4d40b738997cd11
Contents?: true
Size: 1.38 KB
Versions: 21
Compression:
Stored size: 1.38 KB
Contents
require File.dirname(__FILE__) + '/../../spec_helper' require 'pickle/email/parser' describe Pickle::Email::Parser do include Pickle::Parser::Matchers include Pickle::Email::Parser describe "#match_email" do it "should match 'the email'" do 'the email'.should match(/^#{match_email}$/) end it "should match 'the first email'" do 'the first email'.should match(/^#{match_email}$/) end it "should match 'the last email'" do 'the last email'.should match(/^#{match_email}$/) end it "should match 'the 3rd email'" do 'the 3rd email'.should match(/^#{match_email}$/) end it "should match 'an email'" do 'an email'.should match(/^#{match_email}$/) end end it "#capture_email should just capture match_email" do capture_email.should == "(#{match_email})" end describe "#capture_index_in_email" do it "should extract the '2nd' from 'the 2nd email'" do match = 'the 2nd email'.match(/^#{capture_index_in_email}$/) match[1].should == '2nd' end it "should extract nil from 'the email'" do match = 'the email'.match(/^#{capture_index_in_email}$/) match[1].should == nil end it "should extract the 'last' from 'the last email'" do match = 'the last email'.match(/^#{capture_index_in_email}$/) match[1].should == 'last' end end end
Version data entries
21 entries across 21 versions & 3 rubygems