spec/routes/flyboy/tasks_routing_spec.rb in flyboy-1.0.7 vs spec/routes/flyboy/tasks_routing_spec.rb in flyboy-1.1.0

- old
+ new

@@ -7,10 +7,10 @@ it "routes to #index" do get("/tasks").should route_to("flyboy/tasks#index") end it "routes to #new" do - get("/tasks/new").should_not route_to("flyboy/tasks#new") + get("/tasks/new").should route_to("flyboy/tasks#new") end it "routes to #show" do get("/tasks/1").should route_to("flyboy/tasks#show", :id => "1") end