Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
5d8abc362fa8931e99b5613a255dbda9eb4c6373
/
.
/
crates
/
anes
/
tests
/
parser
/
cursor.rs
blob: 250ee48a6d91c58d8e9f88e03b6f85e3e66e269a [
file
] [
log
] [
blame
]
use
anes
::
parser
::
Sequence
;
use
crate
::
test_sequences
;
#[
test
]
fn
position
()
{
test_sequences
!(
b
"\x1B[20;10R"
,
Sequence
::
CursorPosition
(
10
,
20
),);
}