[Rails-core] Railties tests

2009-02-11 Thread Nick Hoffman
Are the Railties tests current and passing at the moment? I ask because I found an old thread saying that they're neglected [1], but I can't find any recent discussions. -Nick [1] http://tinyurl.com/acuhkr --~--~-~--~~~---~--~~ You received this message because

[Rails-core] Re: Railties tests

2009-02-11 Thread Chad Woolley
On Tue, Feb 10, 2009 at 4:46 PM, Nick Hoffman n...@deadorange.com wrote: Are the Railties tests current and passing at the moment? I ask because I found an old thread saying that they're neglected [1], but I can't find any recent discussions. -Nick [1] http://tinyurl.com/acuhkr Well, SOME

[Rails-core] Domains Yahoo - Domain Name Yahoo

2009-02-11 Thread computer computer
*domains yahoo and domain name yahoo* Yahoo will register your domains' names for under $10 a year, though as of this writing, Yahoo is having a sale on domains for $2.99 per year. That's a lot cheaper than some registrars I've seen that are still trying to charge $20 or more just for domains.

[Rails-core] Need Consistent Way to Test for Template Existance

2009-02-11 Thread Mike Gaffney
Hey, I've been working to keep Active Scaffold up to date and one of the most common issues is that there is no consistent way to test that a template exists. At the moment I'm creating a new template with the name I want and then catching the no template exception just to check. We need

[Rails-core] Re: Railties tests

2009-02-11 Thread Nick Hoffman
On Feb 11, 5:01 am, Chad Woolley thewoolley...@gmail.com wrote: On Tue, Feb 10, 2009 at 4:46 PM, Nick Hoffman n...@deadorange.com wrote: Are the Railties tests current and passing at the moment? I ask because I found an old thread saying that they're neglected [1], but I can't find any

[Rails-core] Re: Railties tests

2009-02-11 Thread Nick Hoffman
On Feb 11, 1:11 pm, Frederick Cheung frederick.che...@gmail.com wrote: On 11 Feb 2009, at 17:29, Nick Hoffman wrote: This approach fails: rails/railties$ ruby test/initializer_test.rb test/initializer_test.rb:1:in `require': no such file to load -- abstract_unit (LoadError)    from

[Rails-core] Re: Railties tests

2009-02-11 Thread Nick Hoffman
On Feb 11, 1:20 pm, Jeremy Kemper jer...@bitsweat.net wrote: On Wed, Feb 11, 2009 at 10:11 AM, Frederick Cheung frederick.che...@gmail.com wrote: On 11 Feb 2009, at 17:29, Nick Hoffman wrote: This approach fails: rails/railties$ ruby test/initializer_test.rb

[Rails-core] Re: Railties tests

2009-02-11 Thread Jeremy Kemper
On Wed, Feb 11, 2009 at 10:11 AM, Frederick Cheung frederick.che...@gmail.com wrote: On 11 Feb 2009, at 17:29, Nick Hoffman wrote: This approach fails: rails/railties$ ruby test/initializer_test.rb test/initializer_test.rb:1:in `require': no such file to load -- abstract_unit (LoadError)

[Rails-core] Re: Railties tests

2009-02-11 Thread Nick Hoffman
After reading through railties/test/initializer_test.rb and other test files, I've noticed that there aren't any tests for reading the database configuration file, or for establishing the database connection. This is my first time writing a patch for Rails. Thus, I'm not sure how to begin