class ChunkyPNG::Canvas
def assert_width!(vector_length)
def assert_width!(vector_length) raise ChunkyPNG::ExpectationFailed, "The length of the vector (#{vector_length}) does not match the canvas width (#{width})!" if width != vector_length return true end