Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-06-24 19:24:14 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-06-24 19:24:14 +0400
commit3e09e6f7b8032859a82266282dfd35715b3b3727 (patch)
tree7f882004565743b11cb4c734cbdfb9417fa1a9ab /spec/routing/notifications_routing_spec.rb
parente55e23bbda6f6a95982109bc46e48a5550e4c181 (diff)
Move Profile related controllers under Profiles:: module
Diffstat (limited to 'spec/routing/notifications_routing_spec.rb')
-rw-r--r--spec/routing/notifications_routing_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/routing/notifications_routing_spec.rb b/spec/routing/notifications_routing_spec.rb
index 6880d2819d1..112b825e023 100644
--- a/spec/routing/notifications_routing_spec.rb
+++ b/spec/routing/notifications_routing_spec.rb
@@ -1,13 +1,13 @@
require "spec_helper"
-describe NotificationsController do
+describe Profiles::NotificationsController do
describe "routing" do
it "routes to #show" do
- get("/profile/notifications").should route_to("notifications#show")
+ get("/profile/notifications").should route_to("profiles/notifications#show")
end
it "routes to #update" do
- put("/profile/notifications").should route_to("notifications#update")
+ put("/profile/notifications").should route_to("profiles/notifications#update")
end
end
end