Sha256: b01aee13705bee2f5338ea0b4c2154b79d13ab802ac0b840335e3468972234e9
Contents?: true
Size: 1.36 KB
Versions: 10
Compression:
Stored size: 1.36 KB
Contents
require 'lib/usher' describe "Usher grapher" do before(:each) do @route_set = Usher.new(:generator => Usher::Util::Generators::URL.new) @route_set.reset! end it "should find a simple path" do @route_set.add_route('/:a/:b/:c') @route_set.generator.generate(nil, {:a => 'A', :b => 'B', :c => 'C'}).should == '/A/B/C' end it "should pick a more specific route" do @route_set.add_route('/:a/:b') @route_set.add_route('/:a/:b/:c') @route_set.generator.generate(nil, {:a => 'A', :b => 'B', :c => 'C'}).should == '/A/B/C' end it "should fail to generate a route when none matches" do @route_set.add_route('/:a/:b') proc {@route_set.generator.generate(nil, {:c => 'C', :d => 'D'}) }.should raise_error Usher::UnrecognizedException end it "should find the most specific route and append extra parts on as a query string" do @route_set.add_route('/:a/:b/:c') @route_set.add_route('/:a/:b') @route_set.generator.generate(nil, {:a => 'A', :b => 'B', :d => 'C'}).should == '/A/B?d=C' end # FIXME #it "should do a validity check against the incoming variables when asked to" do # route_set.add_route('/:a/:b', :b => /\d+/) # route_set.generate_url(nil, {:a => 'A', :b => 'B'}).should == '/A/B' # proc{ route_set.generate_url(nil, {:a => 'A', :b => 'B'})}.should raise_error Usher::ValidationException #end end
Version data entries
10 entries across 10 versions & 2 rubygems