Sha256: 231591d9e5574f8f9667295a211381fda8c043bcb1366ef6fbf57f8fe7bf1797

Contents?: true

Size: 463 Bytes

Versions: 1

Compression:

Stored size: 463 Bytes

Contents

# frozen_string_literal: true

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

RSpec.describe "SQLite3" do
  before :all do # rubocop:disable RSpec/BeforeAfterAll
    ActiveRecord::Base.establish_connection(:sqlite3_test)
    TestSetupMigration.migrate(:up)
  end

  after(:all) { ActiveRecord::Base.remove_connection } # rubocop:disable RSpec/BeforeAfterAll

  include_examples ".order_as_specified"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
order_as_specified-1.7 spec/sqlite3_spec.rb