summaryrefslogtreecommitdiff
path: root/spec/features
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dzaporozhets@gitlab.com>2015-02-05 16:47:11 +0000
committerDmitriy Zaporozhets <dzaporozhets@gitlab.com>2015-02-05 16:47:11 +0000
commit50e8e5943f182c65be1ef7777d06869029886d8e (patch)
treeff1629bfc6319348d3ec04a65ce6c8290b42af23 /spec/features
parent31323205bcc3ed663e7a1c5be4c5e5bd5b9ec5a6 (diff)
parentab22caa97e4c1d749f1acfa344c0b1c91eba598b (diff)
downloadgitlab-ce-50e8e5943f182c65be1ef7777d06869029886d8e.tar.gz
Merge branch 'redirect-sign_up' into 'master'
Redirect signup page to signin page. Resolves #1916. See merge request !1468
Diffstat (limited to 'spec/features')
-rw-r--r--spec/features/users_spec.rb13
1 files changed, 4 insertions, 9 deletions
diff --git a/spec/features/users_spec.rb b/spec/features/users_spec.rb
index 8b237199bcc..21a3a4bf937 100644
--- a/spec/features/users_spec.rb
+++ b/spec/features/users_spec.rb
@@ -1,19 +1,14 @@
require 'spec_helper'
describe 'Users', feature: true do
- describe "GET /users/sign_up" do
- before do
- ApplicationSetting.any_instance.stub(signup_enabled?: true)
- end
-
+ describe "GET /users/sign_in" do
it "should create a new user account" do
- visit new_user_registration_path
+ visit new_user_session_path
fill_in "user_name", with: "Name Surname"
fill_in "user_username", with: "Great"
fill_in "user_email", with: "name@mail.com"
- fill_in "user_password", with: "password1234"
- fill_in "user_password_confirmation", with: "password1234"
- expect { click_button "Sign up" }.to change {User.count}.by(1)
+ fill_in "user_password_sign_up", with: "password1234"
+ expect { click_button "Sign up" }.to change { User.count }.by(1)
end
end
end