require 'test/unit' require 'vooly' class Rectangle < Struct.new(:x, :y, :w, :h) end class Point < Struct.new(:x, :y) def initialize(string) super *string.split.map { |s| Integer(s) } end end class VoolyTest < Test::Unit::TestCase DOCUMENT = <> <