lib/text2svg/cli_test.rb in text2svg-0.3.4 vs lib/text2svg/cli_test.rb in text2svg-0.3.5

- old
+ new

@@ -17,11 +17,11 @@ end def test_start(t) %w(left right center).each do |text_align| ARGV[0] = "Hello,\nWorld!" - ARGV[1] = '--font=/Library/Fonts/Times New Roman.ttf' + ARGV[1] = '--font=data/sporq.ttf' ARGV[2] = "--text-align=#{text_align}" check(t) end end @@ -30,25 +30,25 @@ [ ['utf-8', "\xEF\x82\x9B".force_encoding(Encoding::ASCII_8BIT)], ['utf-32', "\x00\x00\xFE\xFF\x00\x00\xF0\x9B".force_encoding(Encoding::ASCII_8BIT)], ].each do |(encoding, text)| ARGV[0] = text - ARGV[1] = '--font=~/Library/Fonts/fontawesome-webfont.ttf' + ARGV[1] = '--font=data/sporq.ttf' ARGV[2] = "--encoding=#{encoding}" check(t) end end def test_bold(t) ARGV[0] = 'Hello' - ARGV[1] = '--font=/Library/Fonts/Times New Roman.ttf' + ARGV[1] = '--font=data/sporq.ttf' ARGV[2] = '--bold' check(t) end def test_italic(t) ARGV[0] = 'Hello' - ARGV[1] = '--font=/Library/Fonts/Times New Roman.ttf' + ARGV[1] = '--font=data/sporq.ttf' ARGV[2] = '--italic' check(t) end def capture