aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/net/lib.rs
blob: f44c6fd54cdea3fede34b645cd26405f48f7d92e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* 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/. */

#![cfg_attr(test, feature(net, alloc, path, io))]

extern crate net;
extern crate net_traits;
extern crate profile;
extern crate url;
extern crate util;

#[cfg(test)] mod cookie;
#[cfg(test)] mod data_loader;
#[cfg(test)] mod mime_classifier;
#[cfg(test)] mod resource_task;