hi, Spent a few minutes on the irc... lots of discussion there - is there a dev irc? Anyways, here''s what I was asking: Is anyone else having the problems I put in the subject. I''m thinking about switching to a more stable version of rails (assuming I don''t have something screwed up). Would this be what I want: http://dev.rubyonrails.org/svn/rails/branches/stable/ ? I''m working on a new feature, so I want to keep sort of up to date, but not at the price of things falling apart (steep request, I know). Thanks, Ben
Jeremy Hopple
2005-Dec-13 21:09 UTC
Re: rake test_mysql on trunk gives 6 failures and 1 error
I have 0 failures and 0 errors with MySQL on trunk. On 12/13/05, Ben Anderson <benanderson.us@gmail.com> wrote:> hi, > Spent a few minutes on the irc... lots of discussion there - is there > a dev irc? Anyways, here''s what I was asking: > > Is anyone else having the problems I put in the subject. I''m thinking > about switching to a more stable version of rails (assuming I don''t > have something screwed up). Would this be what I want: > http://dev.rubyonrails.org/svn/rails/branches/stable/ ? I''m working > on a new feature, so I want to keep sort of up to date, but not at the > price of things falling apart (steep request, I know). > Thanks, > Ben > _______________________________________________ > Rails-core mailing list > Rails-core@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails-core >
Ben Anderson
2005-Dec-13 21:20 UTC
Re: rake test_mysql on trunk gives 6 failures and 1 error
Thanks for the sanity check, Jeremy - I''ll have to investigate further. On 12/13/05, Jeremy Hopple <jeremy@jthopple.com> wrote:> I have 0 failures and 0 errors with MySQL on trunk. > > On 12/13/05, Ben Anderson <benanderson.us@gmail.com> wrote: > > hi, > > Spent a few minutes on the irc... lots of discussion there - is there > > a dev irc? Anyways, here''s what I was asking: > > > > Is anyone else having the problems I put in the subject. I''m thinking > > about switching to a more stable version of rails (assuming I don''t > > have something screwed up). Would this be what I want: > > http://dev.rubyonrails.org/svn/rails/branches/stable/ ? I''m working > > on a new feature, so I want to keep sort of up to date, but not at the > > price of things falling apart (steep request, I know). > > Thanks, > > Ben > > _______________________________________________ > > Rails-core mailing list > > Rails-core@lists.rubyonrails.org > > http://lists.rubyonrails.org/mailman/listinfo/rails-core > > > _______________________________________________ > Rails-core mailing list > Rails-core@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails-core >
David Heinemeier Hansson
2005-Dec-14 06:50 UTC
Re: rake test_mysql on trunk gives 6 failures and 1 error
> Thanks for the sanity check, Jeremy - I''ll have to investigate further.I''ve seen the problem too. Then I ran aaa_create_tables.rb by hand, then it all passed. Please do investigate and see if you can make it work the first time without this manual step. Thanks! -- David Heinemeier Hansson http://www.loudthinking.com -- Broadcasting Brain http://www.basecamphq.com -- Online project management http://www.backpackit.com -- Personal information manager http://www.rubyonrails.com -- Web-application framework
Ben Anderson
2005-Dec-14 12:31 UTC
Re: rake test_mysql on trunk gives 6 failures and 1 error
well, I found my problem - sounds like its different from what you''re explaining though David. My problem was this... I added a test and decided to piggyback off an existing fixture. I also changed my rake script momentarily to only test my new test when I ran "rake test_mysql". I found I had to add this at the top of my file: require ''fixtures/Developer'' require ''fixtures/Project'' Then when I switched the rake script back to testing everything - it threw up because those files were already loaded. Not being a ruby expert (yet), is there a way to require it only if it''s not already loaded. Also, I have checked out a pristine copy of the trunk which I will use to do my sanity testing and make sure nothing that''s checked in is broken instead of pinging the list (I''ve done that a couple of times now) - so you shouldn''t hear anything more from me like, "you guys sure this works?" Thanks, Ben On 12/14/05, David Heinemeier Hansson <david.heinemeier@gmail.com> wrote:> > Thanks for the sanity check, Jeremy - I''ll have to investigate further. > > I''ve seen the problem too. Then I ran aaa_create_tables.rb by hand, > then it all passed. Please do investigate and see if you can make it > work the first time without this manual step. Thanks! > -- > David Heinemeier Hansson > http://www.loudthinking.com -- Broadcasting Brain > http://www.basecamphq.com -- Online project management > http://www.backpackit.com -- Personal information manager > http://www.rubyonrails.com -- Web-application framework > _______________________________________________ > Rails-core mailing list > Rails-core@lists.rubyonrails.org > http://lists.rubyonrails.org/mailman/listinfo/rails-core >