1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

r2817@asus: jeremy | 2005-07-04 20:49:12 -0700

active_record_store_test falls back to SQLite2 if 3 is unavailable
 r2818@asus:  jeremy | 2005-07-04 20:52:25 -0700
 update changelog


git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1684 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jeremy Kemper 2005-07-04 22:48:01 +00:00
parent ddb57d8ab8
commit 7bcaf2b689
2 changed files with 9 additions and 1 deletions

View file

@ -1,5 +1,7 @@
*SVN*
* The session class backing CGI::Session::ActiveRecordStore may be replaced with any class that duck-types with a subset of Active Record. See docs for details. #1238 [skaes@web.de]
* Fixed that hashes was not working properly when passed by GET to lighttpd #849 [Nicholas Seckar]
* Fixed assert_template nil will be true when no template was rendered #1565 [maceywj@telus.net]

View file

@ -14,7 +14,13 @@ require File.dirname(__FILE__) + '/../abstract_unit'
require 'action_controller/session/active_record_store'
#ActiveRecord::Base.logger = Logger.new($stdout)
CGI::Session::ActiveRecordStore::Session.establish_connection(:adapter => 'sqlite3', :dbfile => ':memory:')
begin
CGI::Session::ActiveRecordStore::Session.establish_connection(:adapter => 'sqlite3', :dbfile => ':memory:')
CGI::Session::ActiveRecordStore::Session.connection
rescue Object
$stderr.puts 'SQLite 3 unavailable; falling to SQLite 2.'
CGI::Session::ActiveRecordStore::Session.establish_connection(:adapter => 'sqlite', :dbfile => ':memory:')
end
class ActiveRecordStoreTest < Test::Unit::TestCase