Sha256: 23d461dfc5cbd1c14cc691f317c38c9911fe4f2b63e8a8ba2e869e4bd30211e1

Contents?: true

Size: 510 Bytes

Versions: 7

Compression:

Stored size: 510 Bytes

Contents

require 'spec_helper'
require 'earth/industry/sic_1987'

describe Sic1987 do
  describe "Sanity check", :sanity => true do
    it { Sic1987.count.should == 1004 }
    it { Sic1987.where(:description => nil).count.should == 0 }
    
    it "can be translated to a NAICS 2002 code" do
      {
        '0119' => %w{ 111120 111130 111150 111191 111199 },
        '0131' => %w{ 111920 },
      }.each do |sic, naics|
        Sic1987.find(sic).naics_2002.map(&:code).sort.should == naics
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

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