2013-03-27 13:04:29 -04:00
|
|
|
require "spec_helper"
|
|
|
|
|
2017-04-25 08:28:55 -04:00
|
|
|
describe "notifications routing" do
|
|
|
|
it "routes to #show" do
|
|
|
|
expect(get("/profile/notifications")).to route_to("profiles/notifications#show")
|
|
|
|
end
|
2013-03-27 13:04:29 -04:00
|
|
|
|
2017-04-25 08:28:55 -04:00
|
|
|
it "routes to #update" do
|
|
|
|
expect(put("/profile/notifications")).to route_to("profiles/notifications#update")
|
2013-03-27 13:04:29 -04:00
|
|
|
end
|
|
|
|
end
|