Sha256: db55ed16727438117ecdfeffe1029edd42d276f0800e5c547075ea722e56337b
Contents?: true
Size: 605 Bytes
Versions: 2
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 == 3006007 Amalgalite::SQLite3::Version::MAJOR.should == 3 Amalgalite::SQLite3::Version::MINOR.should == 6 Amalgalite::SQLite3::Version::RELEASE.should == 7 Amalgalite::SQLite3::Version.to_a.should have(3).items end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
amalgalite-0.6.0-x86-mswin32-60 | spec/sqlite3/version_spec.rb |
amalgalite-0.6.0 | spec/sqlite3/version_spec.rb |