summaryrefslogtreecommitdiff
path: root/spec/routing/notifications_routing_spec.rb
blob: 6880d2819d14c7a4c2da30d3b128742833d33cbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require "spec_helper"

describe NotificationsController do
  describe "routing" do
    it "routes to #show" do
      get("/profile/notifications").should route_to("notifications#show")
    end

    it "routes to #update" do
      put("/profile/notifications").should route_to("notifications#update")
    end
  end
end