this is the only controller in the above test case:

class BookController < ApplicationController
 scaffold :book
 def list
   logger.debug 'List the books'
   @books=Book.find_all
 end
 def edit
   @book=Book.find(@params['id'])
   @categories=Category.find_all
 end
end

mongrel is 1.0.1, rails is 1.2.2, ruby is 1.8.5
_______________________________________________
Mongrel-users mailing list
Mongrel-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/mongrel-users

Reply via email to