Sha256: b9f7435776df70e6b443c70b3dc7269cab578fed47b3f219150d0e64671e7061
Contents?: true
Size: 1.23 KB
Versions: 11
Compression:
Stored size: 1.23 KB
Contents
require File.expand_path(File.join(File.dirname(__FILE__), "..", "..", "spec_helper")) require File.expand_path(File.join(File.dirname(__FILE__), 'compat')) require "usher" route_set = Usher::Interface.for(:rails22) describe "Usher (for rails 2.2) URL generation" do before(:each) do route_set.reset! end it "should fill in the controller from recall" do route_set.add_route('/:controller/:action/:id') route_set.generate({:action => 'thingy'}, {:controller => 'sample', :action => 'index', :id => 123}, :generate).should == '/sample/thingy' end it "should skip the action if not provided" do route_set.add_route('/:controller/:action/:id') route_set.generate({:controller => 'thingy'}, {:controller => 'sample', :action => 'index', :id => 123}, :generate).should == '/thingy' end it "should pick the correct param from optional parts" do route_set.add_route('/:controller/:action(.:format)') route_set.generate({:action => 'thingy', :format => 'html'}, {:controller => 'sample', :action => 'index', :id => 123}, :generate).should == '/sample/thingy.html' route_set.generate({:action => 'thingy'}, {:controller => 'sample', :action => 'index', :id => 123}, :generate).should == '/sample/thingy' end end
Version data entries
11 entries across 11 versions & 1 rubygems