test/test_topbuilder.rb in review-3.0.0.preview1 vs test/test_topbuilder.rb in review-3.0.0.preview2

- old
+ new

@@ -133,10 +133,15 @@ @config['draft'] = true actual = compile_inline('test @<comment>{コメント} test2') assert_equal 'test ◆→コメント←◆ test2', actual end + def test_inline_fence + actual = compile_inline('@<m>|a|, @<m>{\\frac{1\\}{2\\}}, @<m>$\\frac{1}{2}$, @<m>{\\{ \\\\\\}}, @<m>|\\{ \\}|, test @<code>|@<code>{$サンプル$}|') + assert_equal '◆→TeX式ここから←◆a◆→TeX式ここまで←◆, ◆→TeX式ここから←◆\\frac{1}{2}◆→TeX式ここまで←◆, ◆→TeX式ここから←◆\\frac{1}{2}◆→TeX式ここまで←◆, ◆→TeX式ここから←◆\\{ \\}◆→TeX式ここまで←◆, ◆→TeX式ここから←◆\\{ \\}◆→TeX式ここまで←◆, test △@<code>{$サンプル$}☆', actual + end + def test_inline_in_table actual = compile_block("//table{\n★1☆\t▲2☆\n------------\n★3☆\t▲4☆<>&\n//}\n") assert_equal %Q(◆→開始:表←◆\n★★1☆☆\t★▲2☆☆\n★3☆\t▲4☆<>&\n◆→終了:表←◆\n\n), actual end @@ -399,10 +404,10 @@ ■test inside column ◆→終了:コラム←◆ ■H3■next level -this is test. +this is コラム「test」. EOS assert_equal expected, column_helper(review) end end