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
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(get("/profile/notifications")).to route_to("profiles/notifications#show")
|
2013-03-27 13:04:29 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "routes to #update" do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(put("/profile/notifications")).to route_to("profiles/notifications#update")
|
2013-03-27 13:04:29 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|