Sha256: 2f936284bb9e23ac3ff9f80f2d86c5d3894fb572cccbf3f8a351830bd434ecd2

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 == 3006006
    Amalgalite::SQLite3::Version::MAJOR.should == 3
    Amalgalite::SQLite3::Version::MINOR.should == 6
    Amalgalite::SQLite3::Version::RELEASE.should == 6
    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.5.1 spec/sqlite3/version_spec.rb
amalgalite-0.5.1-x86-mswin32-60 spec/sqlite3/version_spec.rb