Skip to content

Commit

Permalink
Fix assertion argument orders
Browse files Browse the repository at this point in the history
  • Loading branch information
nobu committed Dec 1, 2016
1 parent e4086d4 commit bd9bc77
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions test/t/unicode.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,34 +2,34 @@

assert('bare \u notation test') do
# Mininum and maximum one byte characters
assert_equal("\u0000", "\x00")
assert_equal("\u007F", "\x7F")
assert_equal("\x00", "\u0000")
assert_equal("\x7F", "\u007F")

# Mininum and maximum two byte characters
assert_equal("\u0080", "\xC2\x80")
assert_equal("\u07FF", "\xDF\xBF")
assert_equal("\xC2\x80", "\u0080")
assert_equal("\xDF\xBF", "\u07FF")

# Mininum and maximum three byte characters
assert_equal("\u0800", "\xE0\xA0\x80")
assert_equal("\uFFFF", "\xEF\xBF\xBF")
assert_equal("\xE0\xA0\x80", "\u0800")
assert_equal("\xEF\xBF\xBF", "\uFFFF")

# Four byte characters require the \U notation
end

assert('braced \u notation test') do
# Mininum and maximum one byte characters
assert_equal("\u{0000}", "\x00")
assert_equal("\u{007F}", "\x7F")
assert_equal("\x00", "\u{0000}")
assert_equal("\x7F", "\u{007F}")

# Mininum and maximum two byte characters
assert_equal("\u{0080}", "\xC2\x80")
assert_equal("\u{07FF}", "\xDF\xBF")
assert_equal("\xC2\x80", "\u{0080}")
assert_equal("\xDF\xBF", "\u{07FF}")

# Mininum and maximum three byte characters
assert_equal("\u{0800}", "\xE0\xA0\x80")
assert_equal("\u{FFFF}", "\xEF\xBF\xBF")
assert_equal("\xE0\xA0\x80", "\u{0800}")
assert_equal("\xEF\xBF\xBF", "\u{FFFF}")

# Mininum and maximum four byte characters
assert_equal("\u{10000}", "\xF0\x90\x80\x80")
assert_equal("\u{10FFFF}", "\xF4\x8F\xBF\xBF")
assert_equal("\xF0\x90\x80\x80", "\u{10000}")
assert_equal("\xF4\x8F\xBF\xBF", "\u{10FFFF}")
end

0 comments on commit bd9bc77

Please sign in to comment.