summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/choice.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/choice.rs b/src/choice.rs
index aa16c97..7dbd84a 100644
--- a/src/choice.rs
+++ b/src/choice.rs
@@ -62,6 +62,18 @@ mod tests {
)
}
+ // These tests should pass once parse_choice return errors properly, but until that time makes
+ // running other tests impossible.
+ //#[test]
+ //fn parse_bad_choice() {
+ //assert!(Choice::parse_choice("d").is_err());
+ //}
+ //
+ //#[test]
+ //fn parse_bad_range() {
+ //assert!(Choice::parse_choice("d:i").is_err());
+ //}
+
}
use regex::Regex;