Sha256: 3d94ae51c5ebe1f9182b7725a985f777d2e124e2cb3be2b537692d680826ea80
Contents?: true
Size: 1.24 KB
Versions: 3
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(3034000) Amalgalite::SQLite3::Version.runtime_version_number.should eql(3034000) Amalgalite::SQLite3::Version::MAJOR.should eql(3) Amalgalite::SQLite3::Version::MINOR.should eql(34) Amalgalite::SQLite3::Version::RELEASE.should eql(0) expect(Amalgalite::SQLite3::Version.to_a.size).to eql(3) Amalgalite::SQLite3::Version.compiled_version.should be == "3.34.0" Amalgalite::SQLite3::Version.compiled_version_number.should be == 3034000 Amalgalite::SQLite3::Version.compiled_matches_runtime?.should be == true end it "should have the sqlite3 source id" do source_id = "2020-12-01 16:14:00 a26b6597e3ae272231b96f9982c3bcc17ddec2f2b6eb4df06a224b91089fed5b" 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
amalgalite-1.7.0-x86-mingw32 | spec/sqlite3/version_spec.rb |
amalgalite-1.7.0-x64-mingw32 | spec/sqlite3/version_spec.rb |
amalgalite-1.7.0 | spec/sqlite3/version_spec.rb |