diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-05-29 10:41:01 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-05-29 10:41:01 +0200 |
commit | d047d299bf77de9bcd30eeb1d5ade217aa63e913 (patch) | |
tree | 8d627d74da4dd7b0d1a87d7a64ca9515e929b775 /features | |
parent | 51888f746c8afe43c5fed90c8013a03788821099 (diff) | |
parent | 3865a1d92585cb31864b5d0f1b325c3585b5c681 (diff) | |
download | gitlab-ce-d047d299bf77de9bcd30eeb1d5ade217aa63e913.tar.gz |
Merge pull request #9318 from jvanbaarsen/allow-special-chars-bio
Allow special characters in users bio
Diffstat (limited to 'features')
-rw-r--r-- | features/steps/profile/profile.rb | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/features/steps/profile/profile.rb b/features/steps/profile/profile.rb index b8f79f70ca4..32888eb17d9 100644 --- a/features/steps/profile/profile.rb +++ b/features/steps/profile/profile.rb @@ -7,21 +7,23 @@ class Spinach::Features::Profile < Spinach::FeatureSteps end step 'I change my profile info' do - fill_in "user_skype", with: "testskype" - fill_in "user_linkedin", with: "testlinkedin" - fill_in "user_twitter", with: "testtwitter" - fill_in "user_website_url", with: "testurl" - fill_in "user_location", with: "Ukraine" - click_button "Save changes" + fill_in 'user_skype', with: 'testskype' + fill_in 'user_linkedin', with: 'testlinkedin' + fill_in 'user_twitter', with: 'testtwitter' + fill_in 'user_website_url', with: 'testurl' + fill_in 'user_location', with: 'Ukraine' + fill_in 'user_bio', with: 'I <3 GitLab' + click_button 'Save changes' @user.reload end step 'I should see new profile info' do - @user.skype.should == 'testskype' - @user.linkedin.should == 'testlinkedin' - @user.twitter.should == 'testtwitter' - @user.website_url.should == 'testurl' - find("#user_location").value.should == "Ukraine" + expect(@user.skype).to eq 'testskype' + expect(@user.linkedin).to eq 'testlinkedin' + expect(@user.twitter).to eq 'testtwitter' + expect(@user.website_url).to eq 'testurl' + expect(@user.bio).to eq 'I <3 GitLab' + find('#user_location').value.should == 'Ukraine' end step 'I change my avatar' do |