Sha256: 093eb9debd28dbdacb867a74f2456f9bc66908239fe8a032c40f3c128f87ffe5

Contents?: true

Size: 983 Bytes

Versions: 3

Compression:

Stored size: 983 Bytes

Contents

require File.expand_path(File.join(File.dirname(__FILE__),"..","spec_helper.rb"))
require 'amalgalite/sqlite3/version'

describe "Amalgalite::SQLite3::Version" do
  it "should have the sqlite3 version" do
    Amalgalite::SQLite3::VERSION.should =~ /\d\.\d\.\d/
    Amalgalite::SQLite3::Version.to_s.should =~ /\d\.\d\.\d/
    Amalgalite::SQLite3::Version.runtime_version.should =~ /\d\.\d\.\d/

    Amalgalite::SQLite3::Version.to_i.should eql(3006019)
    Amalgalite::SQLite3::Version.runtime_version_number.should eql(3006019)

    Amalgalite::SQLite3::Version::MAJOR.should eql(3)
    Amalgalite::SQLite3::Version::MINOR.should eql(6)
    Amalgalite::SQLite3::Version::RELEASE.should eql(19)
    Amalgalite::SQLite3::Version.to_a.should have(3).items

    Amalgalite::SQLite3::Version.compiled_version.should == "3.6.19"
    Amalgalite::SQLite3::Version.compiled_version_number.should == 3006019
    Amalgalite::SQLite3::Version.compiled_matches_runtime?.should == true
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
amalgalite-0.12.0-x86-mingw32 spec/sqlite3/version_spec.rb
amalgalite-0.12.0 spec/sqlite3/version_spec.rb
amalgalite-0.12.0-x86-mswin32 spec/sqlite3/version_spec.rb