Sha256: 6edc5763d4d1bf02f8c5d06ea1509dfeff589dfdf172c1313653462566ec8308

Contents?: true

Size: 614 Bytes

Versions: 6

Compression:

Stored size: 614 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.to_i.should eql(3006010)
    Amalgalite::SQLite3::Version::MAJOR.should eql(3)
    Amalgalite::SQLite3::Version::MINOR.should eql(6)
    Amalgalite::SQLite3::Version::RELEASE.should eql(10)
    Amalgalite::SQLite3::Version.to_a.should have(3).items
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
amalgalite-0.7.5-x86-mswin32-60 spec/sqlite3/version_spec.rb
amalgalite-0.7.5 spec/sqlite3/version_spec.rb
amalgalite-0.7.7 spec/sqlite3/version_spec.rb
amalgalite-0.7.7-x86-mswin32-60 spec/sqlite3/version_spec.rb
amalgalite-0.8.0-x86-mswin32-60 spec/sqlite3/version_spec.rb
amalgalite-0.8.0 spec/sqlite3/version_spec.rb