Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/jay_flavored_markdown_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ def test_that_it_should_get_nesting_of_unordered_list
end

#文字列の下行の '-' の入力が,2段階見出しの出力になる問題を検証するテスト
def test_that_it_should_get_hyphen_below_string
assert_equal JayFlavoredMarkdownToPlainTextConverter.new("aaa\n-").content, "aaa\n-"
def test_that_it_should_get_two_level_heading
assert_equal JayFlavoredMarkdownToPlainTextConverter.new("aaa\n-").content, "1.1 aaa"
end

#項番付きリストの下行の項番なしリストの入力が,項番付きリストの出力になる問題を検証するテスト
Expand Down