You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
354 B

require "spec_helper"
describe Users::AuthenticationsController do
describe "routing" do
it "routes to #index" do
get("/authentications").should route_to("users/authentications#index")
end
it "routes to #destroy" do
delete("/authentications/1").should route_to("users/authentications#destroy", :id => "1")
end
end
end