add one more extreme-value test for scientific notation parsing

This commit is contained in:
Vadim Graboys 2015-07-31 12:52:50 -04:00
parent 7a95614e29
commit f402c8cd87

View file

@ -137,6 +137,7 @@ func TestNewFromStringErrs(t *testing.T) {
"1e-1.2",
"123.456e-1.3",
"123.456e" + strconv.FormatInt(math.MinInt64, 10),
"123.456e" + strconv.FormatInt(math.MinInt32, 10),
}
for _, s := range tests {