File: cursor.rs

package info (click to toggle)
rust-anes 0.1.6-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 284 kB
  • sloc: makefile: 2
file content (8 lines) | stat: -rw-r--r-- 155 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
use anes::parser::Sequence;

use crate::test_sequences;

#[test]
fn position() {
    test_sequences!(b"\x1B[20;10R", Sequence::CursorPosition(10, 20),);
}