| | 235 | # tests for _invalid_ string interpretations of radix notations |
| | 236 | #?rakudo todo "patch has not been applied, see RT# 59222" |
| | 237 | { |
| | 238 | is +":2.4<01>", 0, "fractional radix parsefail works"; |
| | 239 | is +":10<12f>", 0, "invalid alphabet parsefail works"; |
| | 240 | is +":1b<10>", 0, "invalid radix alphabet parsefail works"; |
| | 241 | is +":10<>", 0, "missing radix conversion number parsefail works"; |
| | 242 | is +":_2<01>", 0, "underscore seperator misuse parsefail works (1)"; |
| | 243 | is +":2<_01>", 0, "underscore seperator misuse parsefail works (2)"; |
| | 244 | is +":2<01_>", 0, "underscore seperator misuse parsefail works (3)"; |
| | 245 | is +":2<1.3>", 0, "invalid radix conversion alphabet parsefail works"; |
| | 246 | } |
| | 247 | |