summaryrefslogtreecommitdiffstats
path: root/vendor/anes/tests/parser/cursor.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/anes/tests/parser/cursor.rs')
-rw-r--r--vendor/anes/tests/parser/cursor.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/vendor/anes/tests/parser/cursor.rs b/vendor/anes/tests/parser/cursor.rs
new file mode 100644
index 000000000..250ee48a6
--- /dev/null
+++ b/vendor/anes/tests/parser/cursor.rs
@@ -0,0 +1,8 @@
+use anes::parser::Sequence;
+
+use crate::test_sequences;
+
+#[test]
+fn position() {
+ test_sequences!(b"\x1B[20;10R", Sequence::CursorPosition(10, 20),);
+}