]> git.proxmox.com Git - cargo.git/commit
Auto merge of #2393 - WiSaGaN:bugfix/tests-mod-naming, r=alexcrichton
authorbors <bors@rust-lang.org>
Thu, 18 Feb 2016 17:12:57 +0000 (17:12 +0000)
committerbors <bors@rust-lang.org>
Thu, 18 Feb 2016 17:12:57 +0000 (17:12 +0000)
commit34269d0af6573a4a24b4ce3beaabf1f782a1e0d2
treecc7872051fd5a5bec09d837f3ab50224ff29a11e
parentb8d274fe18f1a798fd3f8faf94bb6c5f2b2e0313
parent32defb9260ff67f0a7c94538d7596301a39e11e5
Auto merge of #2393 - WiSaGaN:bugfix/tests-mod-naming, r=alexcrichton

In the default `lib.rs` provided by `cargo-new`, the "test" module is named "test" while Rust convention is using "tests" as the name of the module: https://doc.rust-lang.org/book/testing.html#the-tests-module
The plural form also conforms with the style used in special directories at project root such as "examples" and "tests".
This pull request conforms to the existing style.