Re: [rspec-users] Converting to Rails 2.0.2

2007-12-28 Thread s.ross
How strange... I've been having some svn misbehavior so I decided to clone the tree and not do any plugin installations -- simply external references to the correct repos. So this is a today project and these are the externals from svn propedit: vendor/plugins/rspec http:

Re: [rspec-users] Converting to Rails 2.0.2

2007-12-28 Thread Kyle Hargraves
The REV constants no longer exist in trunk (and haven't for a while), yet somehow your rspec_on_rails in vendor is still expecting it. Meaning you don't actually have a copy of trunk in plugins/rspec_on_rails, I guess. HTH Kyle On 12/28/07, s.ross <[EMAIL PROTECTED]> wrote: > I'm moving an older

Re: [rspec-users] JtestR 0.1 released

2007-12-28 Thread aslak hellesoy
On Dec 28, 2007 10:46 PM, Ola Bini <[EMAIL PROTECTED]> wrote: > JtestR allows you to test your Java code with Ruby frameworks. > > Homepage: http://jtestr.codehaus.org > Download: http://dist.codehaus.org/jtestr > Thanks for the pointer and the code Ola - this is REALLY cool. I'll definitely take

[rspec-users] Converting to Rails 2.0.2

2007-12-28 Thread s.ross
I'm moving an older project to Rails 2.0.2 and ran into a roadblock on the version matching. Here's script/console session: >> Spec::VERSION::REV => "1785" >> Spec::Rails::VERSION::REV NoMethodError: undefined method `run=' for Test::Unit:Module from /Users/sxross/rails/tastie_work/ven

[rspec-users] JtestR 0.1 released

2007-12-28 Thread Ola Bini
JtestR allows you to test your Java code with Ruby frameworks. Homepage: http://jtestr.codehaus.org Download: http://dist.codehaus.org/jtestr JtestR 0.1 is the first public release of the JtestR testing tool. JtestR integrates JRuby with several Ruby frameworks to allow painless testing of Java c

[rspec-users] rspec_autotest testing with the use of the controller Namespaces

2007-12-28 Thread Raecoo
Rails2.0 the official support of namespace, making it easier for people with the usual habit of definition Controller For example,We define the following Controller admin/hacks_controller this class namespace is Admin::HackController When we use rspec_autotest for testing,Will be following err