Sha256: 36701b06a18c76cc696be915731f4ac844ea94b9b5f9427320e50da668b6e5a5

Contents?: true

Size: 1.12 KB

Versions: 34

Compression:

Stored size: 1.12 KB

Contents

require 'rspec'
require 'fileutils'

require 'amalgalite'
require Amalgalite::Paths.spec_path( "iso_3166_database.rb" )

class SpecInfo
  class << self
    def test_db
      @test_db ||= Amalgalite::Paths.spec_path("data", "test.db")
    end

    def make_master_iso_db
      @master_db ||= Amalgalite::Iso3166Database.new
    end

    def make_clone_iso_db
      make_master_iso_db.duplicate( 'testing' )
    end
  end
end

RSpec.configure do |config|
  config.expect_with :rspec do |c|
    c.syntax = [:should, :expect]
  end

  config.before(:all) do 
    SpecInfo.make_master_iso_db
  end

  config.after(:all) do
    File.unlink( Amalgalite::Iso3166Database.default_db_file ) if File.exist?( Amalgalite::Iso3166Database.default_db_file )
  end

  config.before( :each ) do
    @iso_db_path = SpecInfo.make_clone_iso_db
    @iso_db      = Amalgalite::Database.new( @iso_db_path )
    @schema      = IO.read( Amalgalite::Iso3166Database.schema_file )
  end

  config.after( :each ) do
    @iso_db.close
    File.unlink( @iso_db_path ) if File.exist?( @iso_db_path )
    File.unlink( SpecInfo.test_db ) if File.exist?( SpecInfo.test_db )
  end
end

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
amalgalite-1.6.3-x64-mingw32 spec/spec_helper.rb
amalgalite-1.6.3 spec/spec_helper.rb
amalgalite-1.6.1-x86-mingw32 spec/spec_helper.rb
amalgalite-1.6.1-x64-mingw32 spec/spec_helper.rb
amalgalite-1.6.1 spec/spec_helper.rb
amalgalite-1.6.0-x64-mingw32 spec/spec_helper.rb
amalgalite-1.6.0-x86-mingw32 spec/spec_helper.rb
amalgalite-1.6.0 spec/spec_helper.rb
amalgalite-1.5.0-x86-mingw32 spec/spec_helper.rb
amalgalite-1.5.0 spec/spec_helper.rb
amalgalite-1.4.1-x86-mingw32 spec/spec_helper.rb
amalgalite-1.4.1 spec/spec_helper.rb
amalgalite-1.4.0-x86-mingw32 spec/spec_helper.rb
amalgalite-1.4.0 spec/spec_helper.rb