Re: [rspec-users] rspec-rails gem double quoting (My)SQL?

2009-11-19 Thread David Nawara
The problem goes away when I ditch the gems and grab the plugins off github. (The archive is too large, or I'd upload that version.) Now I just have to get cucumber working with plugins, which is the reason I switched to gems in the first place… -- Posted via http://www.ruby-forum.com/. ___

Re: [rspec-users] rspec-rails gem double quoting (My)SQL?

2009-11-18 Thread David Nawara
I can further track this down? I don't see anything obvious with either rspec or authlogic fudging with the environment… Regards, David Nawara PS - I think I'll go post this in an authlogic forum now. Attachments: http://www.ruby-forum.com/attachment/4263/

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
me to the test or cucumber RAiLS_ENV. Thanks for the post! Matt Wynne wrote: > On 18 Nov 2009, at 18:39, David Nawara wrote: > >> does fix itself when i comment out my rspec-rails gem. > Which version of the rspec-rails gem are you using? > > Can you check the value of RAILS

[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

Re: [rspec-users] rspec-rails gem double quoting (My)SQL?

2009-11-17 Thread David Nawara
Forgot to mention: I'd love to track this down myself, but i'm not getting a backtrace as there is no error (just no results). Point me in the right direction and I'll do what I can to solve this. -- Posted via http://www.ruby-forum.com/. ___ rspec-us

[rspec-users] rspec-rails gem double quoting (My)SQL?

2009-11-17 Thread David Nawara
Hi all, This seems like a plugin conflict (I haven't yet had success replicating this in a new project), but short version is: when I have "rspec-rails" in my environment.rb plugin config, table names are double quoted in mysql queries generated by my standard finders. rspec-rails commented out:

Re: [rspec-users] Cucumber + Authorize.net CIM

2009-05-18 Thread David Nawara
Aslak Hellesøy wrote: > Introduce an abstraction layer for that site with an API you define. > > Aslak Thanks Aslak. I'll give this method a shot. -- Posted via http://www.ruby-forum.com/. ___ rspec-users mailing list rspec-users@rubyforge.org http://

[rspec-users] Cucumber + Authorize.net CIM

2009-05-18 Thread David Nawara
Hi all, I'm curious how one would recommend testing authorize.net customer information manager storage with cucumber stories. In my checkout process testing, my code sends user profile/card/address information to the authorize.net test servers, which then stores the sensitive data for me. Obviou