require "spec_helper" describe OpenXml::Docx::Properties::PhoneticGuideAlignment do include ValuePropertyTestMacros it_should_use tag: :rubyAlign, name: "alignment", value: :left with_value(:center) do it_should_work it_should_output "" end with_value(:distributeLetter) do it_should_work it_should_output "" end with_value(:distributeSpace) do it_should_work it_should_output "" end with_value(:left) do it_should_work it_should_output "" end with_value(:right) do it_should_work it_should_output "" end with_value(:rightVertical) do it_should_work it_should_output "" end with_value(:nope) do it_should_not_work end end