summaryrefslogtreecommitdiff
path: root/spec/font_spec.rb
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2019-09-18 01:25:25 -0600
committerDan Allen <dan.j.allen@gmail.com>2019-09-18 01:25:25 -0600
commit076484063949cffea9f453e828d8bf166168a974 (patch)
tree10bc4143857e72c14d7c1ac52547453e171ab05a /spec/font_spec.rb
parentf4065ee5979436e8f4560ee788fbc657c517d2c3 (diff)
remove wip from test descriptions [skip ci]
Diffstat (limited to 'spec/font_spec.rb')
-rw-r--r--spec/font_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/font_spec.rb b/spec/font_spec.rb
index 88107b4e..ec01d946 100644
--- a/spec/font_spec.rb
+++ b/spec/font_spec.rb
@@ -14,19 +14,19 @@ describe 'Asciidoctor::PDF::Converter - Font' do
(expect to_file).to visually_match 'font-i18n-default-with-fallback.pdf'
end
- it 'wip should include expected glyphs in bundled default font', integration: true do
+ it 'should include expected glyphs in bundled default font', integration: true do
input_file = Pathname.new fixture_file 'glyph-font-test.adoc'
to_file = to_pdf_file input_file, 'font-glyph-default.pdf'
(expect to_file).to visually_match 'font-glyph-default.pdf'
end
- it 'wip should include expected glyphs in bundled default font with fallback font', integration: true do
+ it 'should include expected glyphs in bundled default font with fallback font', integration: true do
input_file = Pathname.new fixture_file 'glyph-font-test.adoc'
to_file = to_pdf_file input_file, 'font-glyph-default-with-fallback.pdf', attribute_overrides: { 'pdf-theme' => 'default-with-fallback-font' }
(expect to_file).to visually_match 'font-glyph-default-with-fallback.pdf'
end
- it 'wip should include expected glyphs in fallback font', integration: true do
+ it 'should include expected glyphs in fallback font', integration: true do
input_file = Pathname.new fixture_file 'glyph-font-test.adoc'
to_file = to_pdf_file input_file, 'font-glyph-fallback-only.pdf', pdf_theme: { extends: 'default-with-fallback-font', base_font_family: 'M+ 1p Fallback' }, attribute_overrides: { 'pdf-theme' => 'default-with-fallback-font' }
(expect to_file).to visually_match 'font-glyph-fallback-only.pdf'