Sha256: 86c08620238cc393ef2be15f40bbefeded4ce75f1825897090b81bd475d3d178
Contents?: true
Size: 491 Bytes
Versions: 9
Compression:
Stored size: 491 Bytes
Contents
require 'helper' module SQLite3 class TestSQLite3 < SQLite3::TestCase def test_libversion assert_not_nil SQLite3.libversion end def test_threadsafe assert_not_nil SQLite3.threadsafe end def test_threadsafe? if SQLite3.threadsafe > 0 assert SQLite3.threadsafe? else refute SQLite3.threadsafe? end end def test_version_strings assert_equal(SQLite3::VERSION, SQLite3::VersionProxy::STRING) end end end
Version data entries
9 entries across 9 versions & 1 rubygems