Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-05-08 06:10:38 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-05-08 06:10:38 +0300
commit3be5f2409a03faccb554483ff01509d5f630f10a (patch)
tree3685b99dff4fc655b074eaec24ad3c98b84c69fa /spec/haml_lint
parent6214ac71ff96ebd17254be4dfbebc94226da78e5 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/haml_lint')
-rw-r--r--spec/haml_lint/linter/documentation_links_spec.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/haml_lint/linter/documentation_links_spec.rb b/spec/haml_lint/linter/documentation_links_spec.rb
index 5de455b6e8c..22c406de57a 100644
--- a/spec/haml_lint/linter/documentation_links_spec.rb
+++ b/spec/haml_lint/linter/documentation_links_spec.rb
@@ -80,6 +80,12 @@ RSpec.describe HamlLint::Linter::DocumentationLinks do
it { is_expected.to report_lint }
end
+
+ context 'when the second link is invalid' do
+ let(:haml) { ".data-form{ data: { url: #{link_pattern}('README.md'), wrong_url: #{link_pattern}('wrong.md') } }" }
+
+ it { is_expected.to report_lint }
+ end
end
context 'help_page_path' do