Skip to content

Commit

Permalink
Test low UTF-8 code point generation
Browse files Browse the repository at this point in the history
  • Loading branch information
jnbt committed Oct 14, 2015
1 parent 2d57181 commit 4ddb6d0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion spec/fixtures/test_out.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ it\:em6=item6
item7=line 1 line 2 line 3
item8=line 1 line 2 line 3
item9=line 1 line 2 line 3
item10=test\n\ttest\u05d4 test\n\ttest test\n\ttest = test
item10=test\n\ttest\u05d4 test\n\ttest test\n\ttest\u00fc = test
2 changes: 1 addition & 1 deletion spec/fixtures/test_out_skip_separators.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ it:em6=item6
item7=line 1 line 2 line 3
item8=line 1 line 2 line 3
item9=line 1 line 2 line 3
item10=test\n\ttest\u05d4 test\n\ttest test\n\ttest = test
item10=test\n\ttest\u05d4 test\n\ttest test\n\ttest\u00fc = test
2 changes: 1 addition & 1 deletion spec/fixtures/test_out_skip_special_chars.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ item9=line 1 line 2 line 3
item10=test
test\u05d4 test
test test
test = test
test\u00fc = test
2 changes: 1 addition & 1 deletion spec/fixtures/test_out_skip_unicode.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ it\:em6=item6
item7=line 1 line 2 line 3
item8=line 1 line 2 line 3
item9=line 1 line 2 line 3
item10=test\n\ttestה test\n\ttest test\n\ttest = test
item10=test\n\ttestה test\n\ttest test\n\ttestü = test
4 changes: 2 additions & 2 deletions spec/java-properties/generating/generator_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
:item7 => "line 1 line 2 line 3",
:item8 => "line 1 line 2 line 3",
:item9 => "line 1 line 2 line 3",
:item10 => "test\n\ttestה test\n\ttest test\n\ttest = test"
:item10 => "test\n\ttestה test\n\ttest test\n\ttestü = test"
}
end

Expand Down Expand Up @@ -44,4 +44,4 @@
content.must_equal expected
end

end
end

0 comments on commit 4ddb6d0

Please sign in to comment.