diff options
| author | Stan Hu <stanhu@gmail.com> | 2015-08-09 22:42:07 +0000 |
|---|---|---|
| committer | Stan Hu <stanhu@gmail.com> | 2015-08-09 22:42:07 +0000 |
| commit | 1a3283d4e871c518d131eb3c9a82dce33f4609f8 (patch) | |
| tree | 29ec6b67703c09894d8ea08e477eaaee29bc25ff /features/steps | |
| parent | b833f208f3a31a6ac964dac422141249f2278fd9 (diff) | |
| parent | 0f785bbc7ecf932e81c84ec98636ffd305994b47 (diff) | |
| download | gitlab-ce-1a3283d4e871c518d131eb3c9a82dce33f4609f8.tar.gz | |
Merge branch 'gravatar-host-link' into 'master'
link to configured gravatar host on profile page
This MR updates the profile page to display the correct address for the configured gravatar service. Previously this always showed gravatar.com even if gravatar.com was not being used as the gravatar service.
See merge request !1093
Diffstat (limited to 'features/steps')
| -rw-r--r-- | features/steps/profile/profile.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/features/steps/profile/profile.rb b/features/steps/profile/profile.rb index 2b6b8b167f6..8cf24705a5e 100644 --- a/features/steps/profile/profile.rb +++ b/features/steps/profile/profile.rb @@ -59,6 +59,10 @@ class Spinach::Features::Profile < Spinach::FeatureSteps step 'I should not see the "Remove avatar" button' do expect(page).not_to have_link("Remove avatar") end + + step 'I should see the gravatar host link' do + expect(page).to have_link("gravatar.com") + end step 'I try change my password w/o old one' do page.within '.update-password' do |
