require "spec_helper" describe OpenXml::Docx::Properties::GridSpan do include ValuePropertyTestMacros it_should_use tag: :gridSpan, name: "grid_span", value: 22 with_value(20) do it_should_work it_should_output "" end with_value(-20) do it_should_not_work end with_value(23.1) do it_should_not_work end with_value(:big) do it_should_not_work end end