gitlab-org--gitlab-foss/spec/routing/notifications_routing_spec.rb

14 lines
354 B
Ruby
Raw Normal View History

2013-03-27 17:04:29 +00:00
require "spec_helper"
describe Profiles::NotificationsController do
2013-03-27 17:04:29 +00:00
describe "routing" do
it "routes to #show" do
expect(get("/profile/notifications")).to route_to("profiles/notifications#show")
2013-03-27 17:04:29 +00:00
end
it "routes to #update" do
expect(put("/profile/notifications")).to route_to("profiles/notifications#update")
2013-03-27 17:04:29 +00:00
end
end
end