Sha256: 1ce9ab577cf298aec30e78f2340d3a3d35086dc0ad23e775a369ab23702c7d34
Contents?: true
Size: 290 Bytes
Versions: 6
Compression:
Stored size: 290 Bytes
Contents
# -*- coding: utf-8 -*- 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 end# TestGraphics
Version data entries
6 entries across 6 versions & 1 rubygems