1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-03 16:51:58 +00:00

update test

This commit is contained in:
Nikolay Kim 2018-03-07 17:42:57 -08:00
parent 42d2a29b1d
commit 824244622f

View file

@ -82,7 +82,7 @@ impl NamedFile {
self.path.as_path()
}
/// Returns reference to the underlying `File` object.
/// Set `CpuPool` to use
#[inline]
pub fn set_cpu_pool(mut self, cpu_pool: CpuPool) -> Self {
self.cpu_pool = Some(cpu_pool);
@ -502,7 +502,8 @@ mod tests {
#[test]
fn test_named_file() {
assert!(NamedFile::open("test--").is_err());
let mut file = NamedFile::open("Cargo.toml").unwrap();
let mut file = NamedFile::open("Cargo.toml").unwrap()
.set_cpu_pool(CpuPool::new(1));
{ file.file();
let _f: &File = &file; }
{ let _f: &mut File = &mut file; }