Fixing rspec after upgrade to capybara pt1

This commit is contained in:
Dmitriy Zaporozhets 2013-02-21 13:09:47 +02:00
parent 2d5096b678
commit 5aeaf248f1
5 changed files with 56 additions and 34 deletions

View file

@ -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