Re: [rspec-users] rspec-rails gem changing connection adapter

2009-11-18 Thread David Nawara
I'm not totally there, but I'm pretty sure it's down to the authlogic plugin. Thanks for your help, and sorry about the misfire on rspec. (I didn't think that one made sense, but it's all I had at the time.) I've actually found I can comment out loading observers in my environment.rb and thin

Re: [rspec-users] rspec-rails gem changing connection adapter

2009-11-18 Thread David Nawara
Yeah I think you're right. I'm working on this now... I noticed the only RAILS_ENV I have set on sqlite is the test environment (in database.yml), and cucumber is now doing some ||= fun on the RAILS_ENV, so I'm following that trail. I suspect something (cucumber?) is setting me to the test or

Re: [rspec-users] rspec-rails gem changing connection adapter

2009-11-18 Thread Matt Wynne
On 18 Nov 2009, at 18:39, David Nawara wrote: This thread should be titled: "rspec-rails gem changing connection adapter?" I did some puts's and found that something is changing the connection adapter to ActiveRecord::ConnectionAdapters::SQLite3Adapter, from my specified ActiveRecord::Connecti

[rspec-users] rspec-rails gem changing connection adapter

2009-11-18 Thread David Nawara
This thread should be titled: "rspec-rails gem changing connection adapter?" I did some puts's and found that something is changing the connection adapter to ActiveRecord::ConnectionAdapters::SQLite3Adapter, from my specified ActiveRecord::ConnectionAdapters::MysqlAdapter. Or maybe it's causi