Whitespace fixes

This commit is contained in:
Holger Just 2011-05-16 00:03:51 +02:00
parent 705c0db000
commit 7b3a2047fd
2 changed files with 6 additions and 6 deletions

View File

@ -46,7 +46,7 @@ module ChiliProject
self.adapter_name =~ regex
}[0]
end
# Provide helper methods to quickly check the database type
# ChiliProject::Database.mysql? returns true, if we have a MySQL DB
supported_adapters.keys.each do |adapter|

View File

@ -22,7 +22,7 @@ class ChiliProject::DatabaseTest < ActiveSupport::TestCase
ChiliProject::Database.stubs(:adapter_name).returns "SQLite"
SQLite3::Driver::Native::API.stubs(:sqlite3_libversion).returns "3.6.12"
end
should "return the correct identifier" do
assert_equal :sqlite, ChiliProject::Database.name
end
@ -32,19 +32,19 @@ class ChiliProject::DatabaseTest < ActiveSupport::TestCase
assert_equal false, ChiliProject::Database.postgresql?
assert_equal true, ChiliProject::Database.sqlite?
end
should "return a version string" do
assert_equal "3.6.12", ChiliProject::Database.version
end
should "return long version string for raw==true" do
ChiliProject::Database.stubs(:adapter_name).returns "PostgreSQL"
raw_version = "PostgreSQL 8.3.11 on x86_64-pc-linux-gnu, compiled by GCC gcc-4.3.real (Debian 4.3.2-1.1) 4.3.2"
ActiveRecord::Base.connection.stubs(:select_value).returns raw_version
assert_equal "8.3.11", ChiliProject::Database.version
assert_equal raw_version, ChiliProject::Database.version(true)
end
end