require "spec_helper" RSpec.describe Asciimath2UnitsML do it "converts an AsciiMath string to MathML + UnitsML" do expect(xmlpp(Asciimath2UnitsML::Conv.new().Asciimath2UnitsML(<<~INPUT))).to be_equivalent_to xmlpp(<<~OUTPUT) 32 + 5 xx 7 "unitsml(kg^-2)" xx 9 "unitsml(g)" xx 1 "unitsml(kg*s^-2)" xx 812 "unitsml(m*s^-2)" - 9 "unitsml(C^3*A)" + 7 "unitsml(hp)" INPUT 32 + 5 × 7 kg 2 kg^-2 kg −2 kg 2 kilo k × 9 g gram g g × 1 kg · s 2 kg*s^-2 kg · s −2 kg · s 2 kilo k × 812 m · s 2 meter per second squared m · s −2 m · s 2 9 C 3 · A C^3*A C 3 · A C 3 · A + 7 hp horsepower hp hp OUTPUT end it "raises error for illegal unit" do expect{xmlpp(Asciimath2UnitsML::Conv.new().Asciimath2UnitsML(<<~INPUT))}.to raise_error(Rsec::SyntaxError) 12 "unitsml(que?)" INPUT end end