summaryrefslogtreecommitdiff
path: root/spec/routing
diff options
context:
space:
mode:
authorDouwe Maan <douwe@selenight.nl>2017-10-12 10:21:16 +0200
committerDouwe Maan <douwe@selenight.nl>2017-11-02 11:39:01 +0100
commit4b93429a4e7161460ecde6b0cf56480b03e8e600 (patch)
treecba999424a75565af0d9d8e5e5c8e5debc9d5d92 /spec/routing
parent3c03388ba047d073bd6585a201f6e56060676dcf (diff)
downloadgitlab-ce-4b93429a4e7161460ecde6b0cf56480b03e8e600.tar.gz
Remove Private Token from User Settings > Account
Diffstat (limited to 'spec/routing')
-rw-r--r--spec/routing/routing_spec.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/spec/routing/routing_spec.rb b/spec/routing/routing_spec.rb
index 407d19c3b2a..609481603af 100644
--- a/spec/routing/routing_spec.rb
+++ b/spec/routing/routing_spec.rb
@@ -135,7 +135,6 @@ end
# profile_history GET /profile/history(.:format) profile#history
# profile_password PUT /profile/password(.:format) profile#password_update
# profile_token GET /profile/token(.:format) profile#token
-# profile_reset_private_token PUT /profile/reset_private_token(.:format) profile#reset_private_token
# profile GET /profile(.:format) profile#show
# profile_update PUT /profile/update(.:format) profile#update
describe ProfilesController, "routing" do
@@ -147,10 +146,6 @@ describe ProfilesController, "routing" do
expect(get("/profile/audit_log")).to route_to('profiles#audit_log')
end
- it "to #reset_private_token" do
- expect(put("/profile/reset_private_token")).to route_to('profiles#reset_private_token')
- end
-
it "to #reset_rss_token" do
expect(put("/profile/reset_rss_token")).to route_to('profiles#reset_rss_token')
end