Sha256: 105bb556403e2b816323f9ec247291bcc1408a22604aac881c0772f83c6c8037
Contents?: true
Size: 1.24 KB
Versions: 4
Compression:
Stored size: 1.24 KB
Contents
require 'spec_helper' require 'amalgalite/sqlite3/version' describe "Amalgalite::SQLite3::Version" do it "should have the sqlite3 version" do expect(Amalgalite::SQLite3::VERSION).to match(/\d+\.\d+\.\d+/) expect(Amalgalite::SQLite3::Version.to_s).to match( /\d+\.\d+\.\d+/ ) expect(Amalgalite::SQLite3::Version.runtime_version).to match( /\d+\.\d+\.\d+/ ) Amalgalite::SQLite3::Version.to_i.should eql(3045001) Amalgalite::SQLite3::Version.runtime_version_number.should eql(3045001) Amalgalite::SQLite3::Version::MAJOR.should eql(3) Amalgalite::SQLite3::Version::MINOR.should eql(45) Amalgalite::SQLite3::Version::RELEASE.should eql(1) expect(Amalgalite::SQLite3::Version.to_a.size).to eql(3) Amalgalite::SQLite3::Version.compiled_version.should be == "3.45.1" Amalgalite::SQLite3::Version.compiled_version_number.should be == 3045001 Amalgalite::SQLite3::Version.compiled_matches_runtime?.should be == true end it "should have the sqlite3 source id" do source_id = "2024-01-30 16:01:20 e876e51a0ed5c5b3126f52e532044363a014bc594cfefa87ffb5b82257cc467a" Amalgalite::SQLite3::Version.compiled_source_id.should be == source_id Amalgalite::SQLite3::Version.runtime_source_id.should be == source_id end end
Version data entries
4 entries across 4 versions & 1 rubygems