diff options
| author | bors <bors@rust-lang.org> | 2014-02-20 01:51:56 -0800 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-02-20 01:51:56 -0800 |
| commit | 25ba057fad54da946bb3d72925c9a93b0abe61ac (patch) | |
| tree | 141f807a6abb9d11c60a234524d259d943868be0 /src/libstd/path | |
| parent | f76628d3904454241e41acb033f6ececfdd08b4c (diff) | |
| parent | 53b9d1a3248143aafe421566ba31742579da9722 (diff) | |
| download | rust-25ba057fad54da946bb3d72925c9a93b0abe61ac.tar.gz rust-25ba057fad54da946bb3d72925c9a93b0abe61ac.zip | |
auto merge of #12343 : liigo/rust/move-extra-test-to-libtest, r=alexcrichton
I don't think `extra` is a good/meaningful name for a library. `libextra` should disappear, and we move all of its sub modules out of it. This PR is just one of that steps: move `extra::test` to `libtest`. I didn't add `libtest` to doc index, because it's an internal library currently. **Update:** All comments addressed. All tests passed. Rebased and squashed.
Diffstat (limited to 'src/libstd/path')
| -rw-r--r-- | src/libstd/path/posix.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/path/posix.rs b/src/libstd/path/posix.rs index f8e9d0ae344..9aaa86c4cfe 100644 --- a/src/libstd/path/posix.rs +++ b/src/libstd/path/posix.rs @@ -1250,7 +1250,8 @@ mod tests { #[cfg(test)] mod bench { - use extra::test::BenchHarness; + extern crate test; + use self::test::BenchHarness; use super::*; use prelude::*; |
