summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab
diff options
context:
space:
mode:
authorcharlieablett <cablett@gitlab.com>2019-05-01 10:38:41 +1200
committercharlieablett <cablett@gitlab.com>2019-05-01 10:38:41 +1200
commit4b46b530829cc3dd82c2620a76fbe637ca9009c0 (patch)
tree0a077e44d882b0099be88a8677c28f107bd643cc /spec/lib/gitlab
parentf2bc55d76f278e492902bec99534600d589177b7 (diff)
downloadgitlab-ce-4b46b530829cc3dd82c2620a76fbe637ca9009c0.tar.gz
Add `html` to sensitive words
Diffstat (limited to 'spec/lib/gitlab')
-rw-r--r--spec/lib/gitlab/import_export/project_tree_restorer_spec.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/lib/gitlab/import_export/project_tree_restorer_spec.rb b/spec/lib/gitlab/import_export/project_tree_restorer_spec.rb
index 9aafa41feee..9d2b69ea798 100644
--- a/spec/lib/gitlab/import_export/project_tree_restorer_spec.rb
+++ b/spec/lib/gitlab/import_export/project_tree_restorer_spec.rb
@@ -63,6 +63,7 @@ describe Gitlab::ImportExport::ProjectTreeRestorer do
it 'does not import note_html' do
note_content = 'Quo reprehenderit aliquam qui dicta impedit cupiditate eligendi'
issue_note = Issue.find_by(description: 'Aliquam enim illo et possimus.').notes.select { |n| n.note.match(/#{note_content}/)}.first
+
expect(issue_note.note_html).to match(/#{note_content}/)
end
end
@@ -71,12 +72,12 @@ describe Gitlab::ImportExport::ProjectTreeRestorer do
it 'does not import note_html' do
note_content = 'Sit voluptatibus eveniet architecto quidem'
merge_request_note = MergeRequest.find_by(title: 'MR1').notes.select { |n| n.note.match(/#{note_content}/)}.first
+
expect(merge_request_note.note_html).to match(/#{note_content}/)
end
end
end
-
it 'creates a valid pipeline note' do
expect(Ci::Pipeline.find_by_sha('sha-notes').notes).not_to be_empty
end