test_sqlite3.rb 155 B

123456789
  1. require 'helper'
  2. module SQLite3
  3. class TestSQLite3 < SQLite3::TestCase
  4. def test_libversion
  5. assert_not_nil SQLite3.libversion
  6. end
  7. end
  8. end