Sha256: 30b8b0a8607a17edf794b578a0b923513a80990076c9013b2b0888bff4f9ac56
Contents?: true
Size: 354 Bytes
Versions: 20
Compression:
Stored size: 354 Bytes
Contents
require 'test_helper' class Mathematical::CorrectionsTest < MiniTest::Test def setup @render = Mathematical.new end def test_adjust_lt_gt simple_lt = '$|q| < 1$' assert_match /|q| \\lt 1/, @render.apply_corrections(simple_lt) simple_gt = '$|q| > 1$' assert_match /|q| \\gt 1/, @render.apply_corrections(simple_gt) end end
Version data entries
20 entries across 20 versions & 1 rubygems