summaryrefslogtreecommitdiff
path: root/features/steps/profile/profile_notifications.rb
diff options
context:
space:
mode:
Diffstat (limited to 'features/steps/profile/profile_notifications.rb')
-rw-r--r--features/steps/profile/profile_notifications.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/features/steps/profile/profile_notifications.rb b/features/steps/profile/profile_notifications.rb
new file mode 100644
index 00000000000..54b02605689
--- /dev/null
+++ b/features/steps/profile/profile_notifications.rb
@@ -0,0 +1,13 @@
+class ProfileNotifications < Spinach::FeatureSteps
+ include SharedAuthentication
+ include SharedProject
+
+ step 'I visit profile notifications page' do
+ visit profile_notifications_path
+ end
+
+ step 'I should see global notifications settings' do
+ page.should have_content "Setup your notification level"
+ page.should have_content "Global setting"
+ end
+end