Sha256: 8f6532ce4d36adbc9e55edcab3fcd38557f2ef351aad266fb1f00ef07b477e38

Contents?: true

Size: 679 Bytes

Versions: 256

Compression:

Stored size: 679 Bytes

Contents

require 'sqlite3'
require 'minitest/autorun'

if ENV['GITHUB_ACTIONS'] == 'true' || ENV['CI']
  $VERBOSE = nil
end

puts "info: sqlite3-ruby version: #{SQLite3::VERSION}/#{SQLite3::VersionProxy::STRING}"
puts "info: sqlite3 version: #{SQLite3::SQLITE_VERSION}/#{SQLite3::SQLITE_LOADED_VERSION}"
puts "info: sqlcipher?: #{SQLite3.sqlcipher?}"
puts "info: threadsafe?: #{SQLite3.threadsafe?}"

unless RUBY_VERSION >= "1.9"
  require 'iconv'
end

module SQLite3
  class TestCase < Minitest::Test
    alias :assert_not_equal :refute_equal
    alias :assert_not_nil   :refute_nil
    alias :assert_raise     :assert_raises

    def assert_nothing_raised
      yield
    end
  end
end

Version data entries

256 entries across 237 versions & 4 rubygems

Version Path
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/sqlite3-1.7.3-arm64-darwin/test/helper.rb
sqlite3-1.7.3 test/helper.rb
sqlite3-1.7.3-x86_64-linux test/helper.rb
sqlite3-1.7.3-x86_64-darwin test/helper.rb
sqlite3-1.7.3-x86-linux test/helper.rb
sqlite3-1.7.3-x64-mingw32 test/helper.rb
sqlite3-1.7.3-x64-mingw-ucrt test/helper.rb
sqlite3-1.7.3-arm64-darwin test/helper.rb
sqlite3-1.7.3-arm-linux test/helper.rb
sqlite3-1.7.3-aarch64-linux test/helper.rb
sqlite3-1.7.2 test/helper.rb
sqlite3-1.7.2-x86_64-linux test/helper.rb
sqlite3-1.7.2-x86_64-darwin test/helper.rb
sqlite3-1.7.2-x86-linux test/helper.rb
sqlite3-1.7.2-x64-mingw32 test/helper.rb
sqlite3-1.7.2-x64-mingw-ucrt test/helper.rb
sqlite3-1.7.2-arm64-darwin test/helper.rb
sqlite3-1.7.2-arm-linux test/helper.rb
sqlite3-1.7.2-aarch64-linux test/helper.rb
sqlite3-1.7.1 test/helper.rb