Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 26th, 2012  |  syntax: None  |  size: 0.23 KB  |  hits: 18  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. require 'test_helper'
  2.  
  3. class RouteTest < ActiveSupport::TestCase
  4.  
  5.   test "regular paths should be recognized" do
  6.     assert true
  7.     assert_recognizes({ :controller => :company, :action => :new }, '/company/new')
  8.   end
  9.  
  10. end