Sha256: 241b1c34fe08434e83741c44fa1ba1e70a0ef624dc92f9d4bf79001b4e3ba840
Contents?: true
Size: 1.82 KB
Versions: 2
Compression:
Stored size: 1.82 KB
Contents
require 'spec_helper' # - www.movable-type.co.uk/scripts/latlong.html describe GeoPoint do describe 'ruby core Class extensions' do describe 'String extension' do describe '#to_lat' do it 'should not return latitude on empty String' do @str = "" lambda { @str.to_lat}.should raise_error end it 'should return latitude' do @str = "4" @str.to_lat.should == 4 end it 'should convert to latitude' do @str = "50 03 59N" @str.to_lat.should be_within(0.4).of(50) end end describe '#to_lng' do it 'should not return longitude on empty String' do @str = "" lambda { @str.to_lng}.should raise_error end it 'should return latitude' do @str = "4" @str.to_lat.should == 4 end it 'should convert to latitude' do @str = "50 03 59E" @str.to_lat.should be_within(0.4).of(50) end end describe '#to_lat_lng' do it 'should return Array with lat, lng' do @str = "4, 3" @str.to_lat_lng.should == [4, 3] end it 'should raise error if only latitude' do @str = "4" lambda { @str.to_lat_lng}.should raise_error end it 'should raise error if "," but only latitude' do @str = "4," lambda { @str.to_lat_lng}.should raise_error end it 'should raise error if "," in bad position' do @str = ", 4 3" lambda { @str.to_lat_lng}.should raise_error end it 'should raise error if not using "," as seperator' do @str = "4; 3" lambda { @str.to_lat_lng}.should raise_error end end end # String end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
geo_calc-0.7.4 | spec/geo_calc/core_ext/string_ext_spec.rb |
geo_calc-0.7.3 | spec/geo_calc/core_ext/string_ext_spec.rb |