require 'test_helper' class FlannelTest < Test::Unit::TestCase should "wrap functionality up in a neat package" do markup = "== Foo\n\n* Bar" assert_equal "
This is paragraph one.
\n\nThis is paragraph two.
\n\nThis is paragraph three. Watchout for the end of file.
" assert_equal output, Flannel.quilt(input) end context "basic behavior" do should "strip and convert underscores to pre tags" do markup = "_foo\n\n bar\n_" assert_equal "foo\n\n bar", Flannel.quilt(markup) end should "not replace in preformatted text" do markup = "_4 - 2 > 2 - 2\n_" assert_equal '
4 - 2 > 2 - 2', Flannel.quilt(markup) end end context "When block starts with one or more equals signs, it" do should "convert one equals to a header one" do markup = "= Some header" result = "