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

Version Path
pickle-0.4.4 spec/pickle/email/parser_spec.rb
judit-pickle-0.4.2 spec/pickle/email/parser_spec.rb
pickle-0.4.3 spec/pickle/email/parser_spec.rb
pickle-has_many_support-0.4.2 spec/pickle/email/parser_spec.rb
pickle-0.4.2 spec/pickle/email/parser_spec.rb
pickle-0.4.1 spec/pickle/email/parser_spec.rb
pickle-0.4.0 spec/pickle/email/parser_spec.rb
pickle-0.3.5 spec/pickle/email/parser_spec.rb
pickle-0.3.4 spec/pickle/email/parser_spec.rb
pickle-0.3.3 spec/pickle/email/parser_spec.rb
pickle-0.3.2 spec/pickle/email/parser_spec.rb
pickle-0.3.1 spec/pickle/email/parser_spec.rb
pickle-has_many_support-0.3.1 spec/pickle/email/parser_spec.rb
pickle-0.3.0 spec/pickle/email/parser_spec.rb
pickle-0.2.12 spec/pickle/email/parser_spec.rb
pickle-0.2.11 spec/pickle/email/parser_spec.rb
pickle-0.2.10 spec/pickle/email/parser_spec.rb
pickle-0.2.9 spec/pickle/email/parser_spec.rb
pickle-0.2.8 spec/pickle/email/parser_spec.rb
pickle-0.2.7 spec/pickle/email/parser_spec.rb