tests/string-format: Add test for formatting ints with float format.

Fail currently.
This commit is contained in:
Paul Sokolovsky 2014-04-02 20:41:34 +03:00
parent e807fa8d60
commit ad1bac63f7

View File

@ -58,6 +58,9 @@ test("{:10.4f}", 123.456)
test("{:10.4f}", -123.456)
test("{:10.4g}", 123.456)
test("{:10.4g}", -123.456)
test("{:e}", 100)
test("{:f}", 200)
test("{:g}", 300)
test("{:10.4E}", 123.456)
test("{:10.4E}", -123.456)