Sha256: 2229380561a1895774e621624352df7767fd8fcacfffcf647d29428410a3d0b4

Contents?: true

Size: 605 Bytes

Versions: 6

Compression:

Stored size: 605 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 == 3005009
    Amalgalite::SQLite3::Version::MAJOR.should == 3
    Amalgalite::SQLite3::Version::MINOR.should == 5
    Amalgalite::SQLite3::Version::RELEASE.should == 9
    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.1.0 spec/sqlite3/version_spec.rb
amalgalite-0.2.0 spec/sqlite3/version_spec.rb
amalgalite-0.2.2 spec/sqlite3/version_spec.rb
amalgalite-0.2.3 spec/sqlite3/version_spec.rb
amalgalite-0.2.1 spec/sqlite3/version_spec.rb
amalgalite-0.2.4 spec/sqlite3/version_spec.rb