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>2022-12-15 00:08:30 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-12-15 00:08:30 +0300
commita64e7a40667471a1a6594df04476b3c99cabbe3c (patch)
tree8f89c98a3c152934bcac96b4976c1a430ffe32c6 /spec/lib/banzai
parent870dfaa9127e114a6ea2066220760815063fb3de (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/lib/banzai')
-rw-r--r--spec/lib/banzai/filter/attributes_filter_spec.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/spec/lib/banzai/filter/attributes_filter_spec.rb b/spec/lib/banzai/filter/attributes_filter_spec.rb
index 86af3364fef..cef5e24cdaa 100644
--- a/spec/lib/banzai/filter/attributes_filter_spec.rb
+++ b/spec/lib/banzai/filter/attributes_filter_spec.rb
@@ -10,13 +10,6 @@ RSpec.describe Banzai::Filter::AttributesFilter, feature_category: :team_plannin
%(<img src="example.jpg">)
end
- it 'does not recognize new syntax when feature flag is off' do
- stub_feature_flags(markdown_image_attributes: false)
- doc = filter("#{image}{width=100}")
-
- expect(doc.to_s).to eq "#{image}{width=100}"
- end
-
describe 'attribute syntax' do
context 'when attribute syntax is valid' do
where(:text, :result) do