Sha256: 1654f9313f7236fbc26bb51babbaf6d5da88a99fd1cd29cd8e25e40812b47e8c
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(3026000) Amalgalite::SQLite3::Version.runtime_version_number.should eql(3026000) Amalgalite::SQLite3::Version::MAJOR.should eql(3) Amalgalite::SQLite3::Version::MINOR.should eql(26) 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.26.0" Amalgalite::SQLite3::Version.compiled_version_number.should be == 3026000 Amalgalite::SQLite3::Version.compiled_matches_runtime?.should be == true end it "should have the sqlite3 source id" do source_id = "2018-12-01 12:34:55 bf8c1b2b7a5960c282e543b9c293686dccff272512d08865f4600fb58238b4f9" 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.6.3-x86-mingw32 | spec/sqlite3/version_spec.rb |
amalgalite-1.6.3-x64-mingw32 | spec/sqlite3/version_spec.rb |
amalgalite-1.6.3 | spec/sqlite3/version_spec.rb |