mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Test for #243
This commit is contained in:
parent
ae383c6d90
commit
c3ab6684ec
1 changed files with 10 additions and 0 deletions
|
@ -93,6 +93,16 @@ fn fmt() {
|
|||
assert_eq!(a, b);
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn clone_mut() {
|
||||
let buf1 = BytesMut::from("hello");
|
||||
|
||||
let mut buf2 = buf1.clone();
|
||||
buf2[0] = b'x';
|
||||
|
||||
assert_eq!(buf1, "hello");
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn fmt_write() {
|
||||
use std::fmt::Write;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue