Displaying 2 results from an estimated 2 matches for "rubyblog".
2006 May 22
0
Interviews at O''Reillynet
...w with Zed Shaw:
http://www.oreillynet.com/ruby/blog/2006/05/post.html
I posted a companion interview with Luis Lavena this morning,
you can read it in English at:
http://www.oreillynet.com/ruby/blog/2006/05/interview_with_luis_lavena_2.html
It''s also available in German:
http://www.rubyblog.de/index.php/2006/05/22/interview-mit-luis-lavena/
A version in spanish should be on-line soon.
--
thanks,
-pate
-------------------------
http://on-ruby.blogspot.com
2007 Sep 14
2
Testing a nested controller
Hey everyone.
I really stuck on testing a nested controller. I''m trying to make a
request using get and afterwards checking the response by
response.should ...
My routes.rb looks like this:
map.resources :writers do |writers|
writers.resources :notes
end
In my notes_controller_spec.rb
def do_get
writer_id = 1
note_id = 1
get note_path(writer_id, note_id)
end
it "should show