The Artima Developer Community
Sponsored Link

Ruby Buzz Forum
Unit Testing Routes

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
rwdaigle

Posts: 312
Nickname: rwdaigle
Registered: Feb, 2003

Ryan is a passionate ruby developer with a strong Java background.
Unit Testing Routes Posted: Jul 5, 2006 6:47 AM
Reply to this message Reply

This post originated from an RSS feed registered with Ruby Buzz by rwdaigle.
Original Post: Unit Testing Routes
Feed Title: Ryan's Scraps
Feed URL: http://feeds.feedburner.com/RyansScraps
Feed Description: Ryan Daigle's various technically inclined rants along w/ the "What's new in Edge Rails" series.
Latest Ruby Buzz Posts
Latest Ruby Buzz Posts by rwdaigle
Latest Posts From Ryan's Scraps

Advertisement

From the “I didn’t know this existed but now that I’ve found it I will use it more often file” – did’cha know you can actually unit test your routes using the assert_routing assertion?

Assuming a vanilla people_controller and this routes.rb:

map.connect '/:id', :controller => 'people', :action => 'show', :nother => 'woohoo'

You can test routing in your people_controller_test functional test with:

assert_routing "/#{model.id}", :action => 'show', :id => model.id, :nother => 'woohoo'

Good to know…

Read: Unit Testing Routes

Topic: The Early Inhabitants of Balloon Previous Topic   Next Topic Topic: RubyOSA: a Ruby/AppleEvent bridge

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use