require "spec_helper" RSpec.describe IsoDoc do it "processes IsoXML tables" do expect(IsoDoc::Convert.new({}).convert("test", <<~"INPUT", true)).to be_equivalent_to <<~"OUTPUT" Repeatability and reproducibility of husked rice yield
Drago
A type of rice

This is a table about rice

Description Rice sample
Arborio Drago

Parboiled rice.

Balilla

Parboiled rice.

Thaibonnet
Number of laboratories retained after eliminating outliers 13 11 13 13
Mean value, g/100 g 81,2 82,0 81,8 77,7
Reproducibility limit, R (= 2,83 s_R) 2,89 0,57 2,26 6,06
INPUT #{HTML_HDR}

Foreword

Table 1 — Repeatability and reproducibility of husked rice yield

Drago

A type of rice

NOTE  This is a table about rice

Description Rice sample
Arborio Dragoa Balillaa Thaibonnet
Number of laboratories retained after eliminating outliers 13 11 13 13
Mean value, g/100 g 81,2 82,0 81,8 77,7
Reproducibility limit, (#(R)#) (= 2,83 (#(s_R)#)) 2,89 0,57 2,26 6,06

OUTPUT end it "processes IsoXML tables (Word)" do expect(IsoDoc::WordConvert.new({}).convert("test", <<~"INPUT", true)).to be_equivalent_to <<~"OUTPUT" Repeatability and reproducibility of husked rice yield
Drago
A type of rice

This is a table about rice

Description Rice sample
Arborio Drago

Parboiled rice.

Balilla

Parboiled rice.

Thaibonnet
Number of laboratories retained after eliminating outliers 13 11 13 13
Mean value, g/100 g 81,2 82,0 81,8 77,7
Reproducibility limit, R (= 2,83 s_R) 2,89 0,57 2,26 6,06
INPUT test

 



Foreword

Table 1 — Repeatability and reproducibility of husked rice yield

Description Rice sample
Arborio Dragoa Balillaa Thaibonnet
Number of laboratories retained after eliminating outliers 13 11 13 13
Mean value, g/100 g 81,2 82,0 81,8 77,7
Reproducibility limit, (#(R)#) (= 2,83 (#(s_R)#)) 2,89 0,57 2,26 6,06

Drago

A type of rice

NOTE  This is a table about rice

 


OUTPUT end end