summaryrefslogtreecommitdiff
path: root/spec/routing/notifications_routing_spec.rb
blob: 303281c763e5158f5a715c28715b3d6859a7701e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

require "spec_helper"

RSpec.describe "notifications routing" do
  it "routes to #show" do
    expect(get("/-/profile/notifications")).to route_to("profiles/notifications#show")
  end

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

  it 'routes to group #update' do
    expect(put("/-/profile/groups/gitlab-org/notifications")).to route_to("profiles/groups#update", id: 'gitlab-org')
    expect(put("/-/profile/groups/gitlab.org/notifications/")).to route_to("profiles/groups#update", id: 'gitlab.org')
    expect(put("/-/profile/groups/gitlab.org/gitlab/notifications")).to route_to("profiles/groups#update", id: 'gitlab.org/gitlab')
  end
end