Sha256: 571a26a9c53082a6b650efba31382a83398225eeab2c8f8a1698d7fed1f36965

Contents?: true

Size: 1.15 KB

Versions: 1

Compression:

Stored size: 1.15 KB

Contents

# encoding: UTF-8

require 'spec_helper'
require 'earth/air/airport'

describe Airport do
  describe "when importing data", :data_miner => true do
    before do
      Earth.init :air, :load_data_miner => true, :skip_parent_associations => :true
    end
    
    it "imports all airports" do
      Airport.run_data_miner!
    end
  end
  
  describe "verify imported data", :sanity => true do
    it "should have all the data" do
      Airport.count.should == 5324
    end
    
    it "should use utf-8 encoding" do
      Airport.find('PDA').city.should == 'Puerto InĂ­rida'
    end
    
    it "should have name" do
      Airport.where(:name => nil).count.should == 0
    end
    
    it "should have city" do
      Airport.where(:city => nil).count.should == 0
      Airport.where(:city => '').count.should == 0
    end
    
    it "should have country code" do
      Airport.where(:country_iso_3166_code => nil).count.should == 0
    end
    
    it "should have lat/lng" do
      Airport.where(:latitude => nil).count.should == 0
      Airport.where(:longitude => nil).count.should == 0
    end
    
    # FIXME TODO check for duplicate cities in same country
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
earth-0.12.4 spec/earth/air/airport_spec.rb