mirror of
https://github.com/servo/servo.git
synced 2025-08-18 11:55:39 +01:00
Remove unused ByteString::bytes() and its unit test.
This commit is contained in:
parent
80fc666734
commit
aea03b2f92
3 changed files with 0 additions and 25 deletions
|
@ -1,17 +0,0 @@
|
|||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
use script::dom::bindings::str::ByteString;
|
||||
|
||||
#[test]
|
||||
fn test_byte_string_move() {
|
||||
let mut byte_str = ByteString::new(vec![0x73, 0x65, 0x72, 0x76, 0x6f]);
|
||||
let mut byte_vec = byte_str.bytes();
|
||||
|
||||
assert_eq!(byte_vec, "servo".as_bytes());
|
||||
assert_eq!(&*byte_str, &*Vec::<u8>::new());
|
||||
|
||||
byte_vec = byte_str.into();
|
||||
assert_eq!(byte_vec, Vec::<u8>::new());
|
||||
}
|
|
@ -13,6 +13,5 @@ extern crate url;
|
|||
#[cfg(all(test, target_pointer_width = "64"))] mod size_of;
|
||||
#[cfg(test)] mod textinput;
|
||||
#[cfg(test)] mod dom {
|
||||
mod bindings;
|
||||
mod blob;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue