Sha256: 7285262492881f4e6b12c9853857ee812d9fb9790204453927c10cc76206aaa2
Contents?: true
Size: 419 Bytes
Versions: 24
Compression:
Stored size: 419 Bytes
Contents
class XMLDeviceTest < Test::Unit::TestCase include Helper def setup only_device("XML") end def test_new output = StringIO.new device = Cairo::XMLDevice.new(output) assert_equal("", output.string) end def test_new_with_block output = StringIO.new string = nil Cairo::XMLDevice.new(output) do |device| string = output.string end assert_equal("", string) end end
Version data entries
24 entries across 24 versions & 1 rubygems