40 lines
1.5 KiB
Ruby
40 lines
1.5 KiB
Ruby
# ChiliProject is a project management system.
|
|
# Copyright (C) 2010-2011 The ChiliProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
require File.expand_path('../../../../test_helper', __FILE__)
|
|
|
|
class ChiliProject::DatabaseTest < ActiveSupport::TestCase
|
|
setup do
|
|
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
|
|
|
|
should "be able to use the helper methods" do
|
|
assert_equal false, ChiliProject::Database.mysql?
|
|
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
|
|
end
|