Sha256: 5f5d13ebff4c006d5c7eaea4dae43deabb203fe0b1007a8a7a8fe8494cca7448
Contents?: true
Size: 364 Bytes
Versions: 20
Compression:
Stored size: 364 Bytes
Contents
require_relative 'helper' class TestGraphics < Test::Unit::TestCase P = Processing def graphics(w = 10, h = 10) P::Graphics.new w, h end def test_beginDraw() g = graphics g.beginDraw assert_raise {g.beginDraw} end def test_inspect() assert_match %r|#<Processing::Graphics:0x\w{16}>|, graphics.inspect end end# TestGraphics
Version data entries
20 entries across 20 versions & 1 rubygems