diff options
| author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-02-21 13:09:47 +0200 |
|---|---|---|
| committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-02-21 13:09:47 +0200 |
| commit | 5aeaf248f1730ba1698d9e98ec43920b172b9e0c (patch) | |
| tree | dc379709a963567373d0d4d7b17b3a817320cb49 /spec/features/users_spec.rb | |
| parent | 2d5096b6787a601740a59cf9b8d5d4cf53471a83 (diff) | |
| download | gitlab-ce-5aeaf248f1730ba1698d9e98ec43920b172b9e0c.tar.gz | |
Fixing rspec after upgrade to capybara pt1
Diffstat (limited to 'spec/features/users_spec.rb')
| -rw-r--r-- | spec/features/users_spec.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/spec/features/users_spec.rb b/spec/features/users_spec.rb new file mode 100644 index 00000000000..ed9e44fb47e --- /dev/null +++ b/spec/features/users_spec.rb @@ -0,0 +1,19 @@ +require 'spec_helper' + +describe 'Users' do + describe "GET /users/sign_up" do + before do + Gitlab.config.gitlab.stub(:signup_enabled).and_return(true) + end + + it "should create a new user account" do + visit new_user_registration_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) + end + end +end |
