Sha256: 2f5bcd76ba207370ac2f1c7be5282fe198c4299f303f5584fae47475600c0baa

Contents?: true

Size: 524 Bytes

Versions: 10

Compression:

Stored size: 524 Bytes

Contents

# frozen_string_literal: true

require 'bundler/setup'
require 'extralite'
require 'minitest/autorun'

puts "sqlite3 version: #{Extralite.sqlite3_version}"

IS_LINUX = RUBY_PLATFORM =~ /linux/
# Ractors are kinda flaky, there's no point in testing this
SKIP_RACTOR_TESTS = true #!IS_LINUX || (RUBY_VERSION =~ /^3\.[01]/)

module Minitest::Assertions
  def assert_in_range exp_range, act
    msg = message(msg) { "Expected #{mu_pp(act)} to be in range #{mu_pp(exp_range)}" }
    assert exp_range.include?(act), msg
  end
end

Version data entries

10 entries across 10 versions & 2 rubygems

Version Path
extralite-bundle-2.8.2 test/helper.rb
extralite-2.8.2 test/helper.rb
extralite-bundle-2.8.1 test/helper.rb
extralite-2.8.1 test/helper.rb
extralite-bundle-2.8 test/helper.rb
extralite-2.8 test/helper.rb
extralite-bundle-2.7.1 test/helper.rb
extralite-2.7.1 test/helper.rb
extralite-bundle-2.7 test/helper.rb
extralite-2.7 test/helper.rb