Sha256: f8e7750931f6b715e472d7142c4c960eea2dc2aa6a69dbca4fca285dcdecd798
Contents?: true
Size: 1.44 KB
Versions: 2
Compression:
Stored size: 1.44 KB
Contents
dir = File.dirname("__FILE__") require 'rubygems' require 'spec' require 'treetop' require 'yaml' Treetop.load(File.expand_path(dir + '../../lib/biodiversity/parser/scientific_name_clean')) Treetop.load(File.expand_path(dir + '../../lib/biodiversity/parser/scientific_name_dirty')) Treetop.load(File.expand_path(dir + '../../lib/biodiversity/parser/scientific_name_canonical')) describe ScientificNameCanonical do before(:all) do @parser = ScientificNameCanonicalParser.new end def parse(input) @parser.parse(input) end def value(input) parse(input).value end def canonical(input) parse(input).canonical end def details(input) parse(input).details end def pos(input) parse(input).pos end it 'should parse names with valid name part and unparseable rest' do [ ['Moraea spathulata ( (L. f. Klatt','Moraea spathulata',{:genus=>"Moraea", :species=>"spathulata", :name_part_verbatim=>"Moraea spathulata", :auth_part_verbatim=>"( (L. f. Klatt"}, {0=>["genus", 6], 7=>["species", 17]} ], ['Verpericola megasoma ""Dall" Pils.','Verpericola megasoma',{:genus=>"Verpericola", :species=>"megasoma", :name_part_verbatim=>"Verpericola megasoma", :auth_part_verbatim=>"\"\"Dall\" Pils."}, {0=>["genus", 11], 12=>["species", 20]}] ].each do |n| parse(n[0]).should_not be_nil value(n[0]).should == n[1] details(n[0]).should == n[2] pos(n[0]).should == n[3] end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
dimus-biodiversity-0.0.15 | spec/parser/scientific_name_canonical.spec.rb |
dimus-biodiversity-0.0.16 | spec/parser/scientific_name_canonical.spec.rb |