diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2022-10-28 23:57:00 -0600 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2022-10-29 02:27:14 -0600 |
| commit | 90fb17543fa8f2df2defa3ae9383b4389bb5b5fb (patch) | |
| tree | d5e28588cc156886c5502aa0df1d54d5f6573fcc | |
| parent | b58768873ae279239d9590f056df099678d90d5b (diff) | |
remove unused breakable tag in test suite
| -rw-r--r-- | spec/admonition_spec.rb | 2 | ||||
| -rw-r--r-- | spec/open_spec.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/spec/admonition_spec.rb b/spec/admonition_spec.rb index 2506de26..86f46ebc 100644 --- a/spec/admonition_spec.rb +++ b/spec/admonition_spec.rb @@ -98,7 +98,7 @@ describe 'Asciidoctor::PDF::Converter - Admonition' do (expect lines[1][:to][:y]).to be > 36.0 end - it 'should draw border and background on all pages if block is split across pages', breakable: true, visual: true do + it 'should draw border and background on all pages if block is split across pages', visual: true do pdf_theme = { admonition_background_color: 'F5A9A9', admonition_border_width: 0.5, diff --git a/spec/open_spec.rb b/spec/open_spec.rb index 2bc7c948..5003af96 100644 --- a/spec/open_spec.rb +++ b/spec/open_spec.rb @@ -3,7 +3,7 @@ require_relative 'spec_helper' describe 'Asciidoctor::PDF::Converter - Open' do - it 'should be breakable by default', breakable: true do + it 'should be breakable by default' do with_content_spacer 10, 720 do |spacer_path| pdf = to_pdf <<~EOS, analyze: true image::#{spacer_path}[] |
