Sha256: 725f86b0d725f0ff411e08e5e4e2fb816212d3a4143460e54e4aaf0b3fe16931

Contents?: true

Size: 819 Bytes

Versions: 87

Compression:

Stored size: 819 Bytes

Contents

class XMLSurfaceTest < Test::Unit::TestCase
  include CairoTestUtils

  def setup
    only_surface("XML")
  end

  def test_new
    only_cairo_version(1, 12, 0)
    output = StringIO.new
    device = Cairo::XMLDevice.new(output)
    surface = Cairo::XMLSurface.new(device, 100, 200)
    Cairo::Context.new(surface) do |context|
      context.move_to(15, 30)
      context.line_to(80, 100)
      context.stroke
    end
    assert_equal(<<-EOX, output.string)
<stroke>
  <operator>OVER</operator>
  <line-width>2</line-width>
  <miter-limit>10</miter-limit>
  <line-cap>LINE_CAP_BUTT</line-cap>
  <line-join>LINE_JOIN_MITER</line-join>
  <source-pattern>
    <solid>0 0 0 1</solid>
  </source-pattern>
  <path> 15 30 m 80 100 l</path>
  <tolerance>0.1</tolerance>
  <antialias>DEFAULT</antialias>
</stroke>
EOX
  end
end

Version data entries

87 entries across 79 versions & 2 rubygems

Version Path
cairo-1.15.13-x64-mingw32 test/test_xml_surface.rb
cairo-1.15.13-x86-mingw32 test/test_xml_surface.rb
cairo-1.15.13 test/test_xml_surface.rb
cairo-1.15.12-x64-mingw32 test/test_xml_surface.rb
cairo-1.15.12-x86-mingw32 test/test_xml_surface.rb
cairo-1.15.12 test/test_xml_surface.rb
cairo-1.15.11-x64-mingw32 test/test_xml_surface.rb
cairo-1.15.11-x86-mingw32 test/test_xml_surface.rb
cairo-1.15.11 test/test_xml_surface.rb
cairo-1.15.10-x86-mingw32 test/test_xml_surface.rb
cairo-1.15.10-x64-mingw32 test/test_xml_surface.rb
cairo-1.15.10 test/test_xml_surface.rb
cairo-1.15.9-x64-mingw32 test/test_xml_surface.rb
cairo-1.15.9 test/test_xml_surface.rb
cairo-1.15.9-x86-mingw32 test/test_xml_surface.rb
cairo-1.15.8-x86-mingw32 test/test_xml_surface.rb
cairo-1.15.8-x64-mingw32 test/test_xml_surface.rb
cairo-1.15.8 test/test_xml_surface.rb
cairo-1.15.7-x64-mingw32 test/test_xml_surface.rb
cairo-1.15.7-x86-mingw32 test/test_xml_surface.rb