diff options
| author | Alfredo Sumaran <alfredo@gitlab.com> | 2016-04-21 13:03:37 -0500 |
|---|---|---|
| committer | Alfredo Sumaran <alfredo@gitlab.com> | 2016-04-21 14:38:44 -0500 |
| commit | 72debd840cb76a5fc0929c0caeca179c39378680 (patch) | |
| tree | ba0c646f27408f667c181176cfb04a1026df82b4 /spec/features | |
| parent | dbe06ac790befe2d49dbb6edecb79d82abfe46e7 (diff) | |
| download | gitlab-ce-72debd840cb76a5fc0929c0caeca179c39378680.tar.gz | |
Fix failing spec
Diffstat (limited to 'spec/features')
| -rw-r--r-- | spec/features/markdown_spec.rb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/spec/features/markdown_spec.rb b/spec/features/markdown_spec.rb index 3d0d0e59fd7..0148c87084a 100644 --- a/spec/features/markdown_spec.rb +++ b/spec/features/markdown_spec.rb @@ -165,7 +165,12 @@ describe 'GitLab Markdown', feature: true do describe 'ExternalLinkFilter' do it 'adds nofollow to external link' do link = doc.at_css('a:contains("Google")') - expect(link.attr('rel')).to match 'nofollow' + expect(link.attr('rel')).to include('nofollow') + end + + it 'adds noreferrer to external link' do + link = doc.at_css('a:contains("Google")') + expect(link.attr('rel')).to include('noreferrer') end it 'ignores internal link' do |
