Sha256: 10c35122b675195e008c2025c53083a0211b514f2877774e250fb547e6142865

Contents?: true

Size: 527 Bytes

Versions: 7

Compression:

Stored size: 527 Bytes

Contents

require 'spec_helper'
require 'earth/bus/bus_fuel'

describe 'BusFuel' do
  describe 'import', :data_miner => true do
    before do
      Earth.init :locality, :load_data_miner => true, :skip_parent_associations => :true
    end
    
    it 'loads data' do
      BusFuel.run_data_miner!
    end
  end
  
  describe 'verify imported data', :sanity => true do
    it 'should have all the data' do
      BusFuel.count.should == 7
    end
    it 'is related to fuels' do
      BusFuel.last.fuel.should_not be_nil
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
earth-0.12.4 spec/earth/bus/bus_fuel_spec.rb
earth-0.12.3 spec/earth/bus/bus_fuel_spec.rb
earth-0.12.2 spec/earth/bus/bus_fuel_spec.rb
earth-0.12.1 spec/earth/bus/bus_fuel_spec.rb
earth-0.12.0 spec/earth/bus/bus_fuel_spec.rb
earth-0.11.20 spec/earth/bus/bus_fuel_spec.rb
earth-0.11.19 spec/earth/bus/bus_fuel_spec.rb