Sha256: 5d309f0b10430b2213b34cbefef0a7b3921974a2333817ffe2086fde3bf455fa

Contents?: true

Size: 605 Bytes

Versions: 3

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 == 3006003
    Amalgalite::SQLite3::Version::MAJOR.should == 3
    Amalgalite::SQLite3::Version::MINOR.should == 6
    Amalgalite::SQLite3::Version::RELEASE.should == 3
    Amalgalite::SQLite3::Version.to_a.should have(3).items
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
amalgalite-0.4.2-x86-mswin32-60 spec/sqlite3/version_spec.rb
amalgalite-0.4.1 spec/sqlite3/version_spec.rb
amalgalite-0.4.2 spec/sqlite3/version_spec.rb