summaryrefslogtreecommitdiffstats
path: root/vendor/tinystr/examples
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/tinystr/examples')
-rw-r--r--vendor/tinystr/examples/main.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/vendor/tinystr/examples/main.rs b/vendor/tinystr/examples/main.rs
deleted file mode 100644
index 2e0d2a10b..000000000
--- a/vendor/tinystr/examples/main.rs
+++ /dev/null
@@ -1,18 +0,0 @@
-use tinystr::{TinyStr4, TinyStr8};
-
-fn main() {
- let s1: TinyStr4 = "tEsT".parse().expect("Failed to parse.");
-
- assert_eq!(s1, "tEsT");
- assert_eq!(s1.to_ascii_uppercase(), "TEST");
- assert_eq!(s1.to_ascii_lowercase(), "test");
- assert_eq!(s1.to_ascii_titlecase(), "Test");
- assert_eq!(s1.is_ascii_alphanumeric(), true);
-
- let s2: TinyStr8 = "New York".parse().expect("Failed to parse.");
-
- assert_eq!(s2, "New York");
- assert_eq!(s2.to_ascii_uppercase(), "NEW YORK");
- assert_eq!(s2.to_ascii_lowercase(), "new york");
- assert_eq!(s2.is_ascii_alphanumeric(), false);
-}