Commit 8429f6f4 authored by Douwe Maan's avatar Douwe Maan

Merge branch 'rs-single-item-task-list-spec' into 'master'

Add spec for single-item task lists

Follow-up to https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/2330

See merge request !2340
parents c1e974ed 65308a9c
...@@ -7,4 +7,10 @@ describe Banzai::Filter::TaskListFilter, lib: true do ...@@ -7,4 +7,10 @@ describe Banzai::Filter::TaskListFilter, lib: true do
exp = act = %(<ul><li>Item</li></ul>) exp = act = %(<ul><li>Item</li></ul>)
expect(filter(act).to_html).to eq exp expect(filter(act).to_html).to eq exp
end end
it 'applies `task-list` to single-item task lists' do
act = filter('<ul><li>[ ] Task 1</li></ul>')
expect(act.to_html).to start_with '<ul class="task-list">'
end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment