2013-03-27 13:04:29 -04:00
|
|
|
require "spec_helper"
|
|
|
|
|
2013-06-24 11:24:14 -04:00
|
|
|
describe Profiles::NotificationsController do
|
2013-03-27 13:04:29 -04:00
|
|
|
describe "routing" do
|
|
|
|
it "routes to #show" do
|
2013-06-24 11:24:14 -04:00
|
|
|
get("/profile/notifications").should route_to("profiles/notifications#show")
|
2013-03-27 13:04:29 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "routes to #update" do
|
2013-06-24 11:24:14 -04:00
|
|
|
put("/profile/notifications").should route_to("profiles/notifications#update")
|
2013-03-27 13:04:29 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|