Skip to content
Snippets Groups Projects
Commit ad1bac63 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

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

Fail currently.
parent e807fa8d
No related branches found
No related tags found
No related merge requests found
...@@ -58,6 +58,9 @@ test("{:10.4f}", 123.456) ...@@ -58,6 +58,9 @@ test("{:10.4f}", 123.456)
test("{:10.4f}", -123.456) test("{:10.4f}", -123.456)
test("{:10.4g}", 123.456) test("{:10.4g}", 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)
test("{:10.4E}", -123.456) test("{:10.4E}", -123.456)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment