summaryrefslogtreecommitdiffstats
path: root/tests/env.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/env.rs')
-rw-r--r--tests/env.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/env.rs b/tests/env.rs
index bb1a1ec..ffc0572 100644
--- a/tests/env.rs
+++ b/tests/env.rs
@@ -71,3 +71,14 @@ fn test_empty_value_is_ignored() {
env::remove_var("C_A_B");
}
+
+#[test]
+fn test_custom_separator_behavior() {
+ env::set_var("C.B.A", "abc");
+
+ let environment = Environment::with_prefix("C").separator(".");
+
+ assert!(environment.collect().unwrap().contains_key("b.a"));
+
+ env::remove_var("C.B.A");
+}