aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/util/location.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/util/location.rs b/src/util/location.rs
index deff307..87d2ad8 100644
--- a/src/util/location.rs
+++ b/src/util/location.rs
@@ -196,4 +196,19 @@ mod tests {
"should support some points (4)"
);
}
+ #[test]
+ fn test_empty() {
+ let location = Location::new("".as_bytes());
+ assert_eq!(location.to_point(0), Some(Point::new(1, 1, 0)), "to_point");
+ assert_eq!(
+ location.relative_to_point(&[], 0),
+ None,
+ "relative_to_point"
+ );
+ assert_eq!(
+ Location::relative_to_absolute(&[], 0),
+ None,
+ "relative_to_absolute"
+ );
+ }
}