Sha256: 32aee46af96bb2ba731900fa51bd7bf97d5b0d411fffa6937060a6f74606f4d9

Contents?: true

Size: 461 Bytes

Versions: 7

Compression:

Stored size: 461 Bytes

Contents

require 'spec_helper'
require 'earth/industry/naics_2007'

describe Naics2007 do
  describe 'Sanity check', :sanity => true do
    it { Naics2007.count.should == 2328 }
    
    it "can be translated to a NAICS 2002 code" do
      {
        '111211' => %w{ 111211 111219 },
        '111310' => %w{ 111310 },
      }.each do |naics_2007, naics_2002|
        Naics2007.find(naics_2007).naics_2002.map(&:code).sort.should == naics_2002
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
earth-1.2.1 spec/earth/industry/naics_2007_spec.rb
earth-1.1.2 spec/earth/industry/naics_2007_spec.rb
earth-1.1.1 spec/earth/industry/naics_2007_spec.rb
earth-1.1.0 spec/earth/industry/naics_2007_spec.rb
earth-1.0.3 spec/earth/industry/naics_2007_spec.rb
earth-1.0.2 spec/earth/industry/naics_2007_spec.rb
earth-1.0.1 spec/earth/industry/naics_2007_spec.rb