Sha256: 7e3b445121514fdab54e9640d5871dbfe607259888c0f6d1ca97eddba88937c9

Contents?: true

Size: 354 Bytes

Versions: 4

Compression:

Stored size: 354 Bytes

Contents

require "spec_helper"
require "shared/order_as_specified_examples"
require "config/test_setup_migration"

RSpec.describe "SQLite3" do
  before :all do
    ActiveRecord::Base.establish_connection(:sqlite3_test)
    TestSetupMigration.migrate(:up)
  end

  after(:all) { ActiveRecord::Base.remove_connection }

  include_examples ".order_as_specified"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
order_as_specified-1.3 spec/sqlite3_spec.rb
order_as_specified-1.2 spec/sqlite3_spec.rb
order_as_specified-1.1 spec/sqlite3_spec.rb
order_as_specified-1.0 spec/sqlite3_spec.rb