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:
Diffstat (limited to 'features/steps/shared/authentication.rb')
-rw-r--r--features/steps/shared/authentication.rb34
1 files changed, 0 insertions, 34 deletions
diff --git a/features/steps/shared/authentication.rb b/features/steps/shared/authentication.rb
deleted file mode 100644
index ac8a3df6bb9..00000000000
--- a/features/steps/shared/authentication.rb
+++ /dev/null
@@ -1,34 +0,0 @@
-require Rails.root.join('spec', 'support', 'login_helpers')
-
-module SharedAuthentication
- include Spinach::DSL
- include LoginHelpers
-
- step 'I sign in as a user' do
- login_as :user
- end
-
- step 'I sign in as an admin' do
- login_as :admin
- end
-
- step 'I sign in as "John Doe"' do
- login_with(user_exists("John Doe"))
- end
-
- step 'I sign in as "Mary Jane"' do
- login_with(user_exists("Mary Jane"))
- end
-
- step 'I should be redirected to sign in page' do
- current_path.should == new_user_session_path
- end
-
- step "I logout" do
- logout
- end
-
- def current_user
- @user || User.first
- end
-end