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

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

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