diff options
| author | bors <bors@rust-lang.org> | 2015-04-25 09:55:06 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-04-25 09:55:06 +0000 |
| commit | e3d00a49803fa75580b912463666d86ce2ee3bb8 (patch) | |
| tree | b3f794635fbbf2ab87518d87922cda4612ae2aae /src/libsyntax/util | |
| parent | 54d65092a49eba959b5cd7a1c4b2e43b3fedba1f (diff) | |
| parent | 07cc7d9960a1bc767dc051b9fae0c7ad2b5cd97f (diff) | |
| download | rust-e3d00a49803fa75580b912463666d86ce2ee3bb8.tar.gz rust-e3d00a49803fa75580b912463666d86ce2ee3bb8.zip | |
Auto merge of #24783 - jooert:unittestguidelines, r=alexcrichton
Changes the style guidelines regarding unit tests to recommend using a sub-module named "tests" instead of "test" for unit tests as "test" might clash with imports of libtest (see #23870, #24030 and http://users.rust-lang.org/t/guidelines-naming-of-unit-test-module/1078 for previous discussions). r? @alexcrichton
Diffstat (limited to 'src/libsyntax/util')
| -rw-r--r-- | src/libsyntax/util/parser_testing.rs | 2 | ||||
| -rw-r--r-- | src/libsyntax/util/small_vector.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/util/parser_testing.rs b/src/libsyntax/util/parser_testing.rs index 6adeb30a94e..d016eb39239 100644 --- a/src/libsyntax/util/parser_testing.rs +++ b/src/libsyntax/util/parser_testing.rs @@ -142,7 +142,7 @@ pub fn is_whitespace(c: char) -> bool { } #[cfg(test)] -mod test { +mod tests { use super::*; #[test] fn eqmodws() { diff --git a/src/libsyntax/util/small_vector.rs b/src/libsyntax/util/small_vector.rs index 153f9d4a26d..5353d12b678 100644 --- a/src/libsyntax/util/small_vector.rs +++ b/src/libsyntax/util/small_vector.rs @@ -204,7 +204,7 @@ impl<T> MoveMap<T> for SmallVector<T> { } #[cfg(test)] -mod test { +mod tests { use super::*; #[test] |
