Skip to content

Commit 821725d

Browse files
committed
Add a inherit test for init
Signed-off-by: hi-rustin <[email protected]>
1 parent 5265b1d commit 821725d

File tree

12 files changed

+121
-0
lines changed

12 files changed

+121
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[workspace]
2+
members = [
3+
"crates/*",
4+
]
5+
6+
[workspace.package]
7+
authors = ["Rustaceans"]
8+
description = "foo"
9+
edition = "2018"
10+
homepage = "foo"
11+
keywords = ["foo", "bar"]
12+
readme = "README.md"
13+
rust-version = "1.67.0"
14+
categories = ["algorithms"]
15+
documentation = "foo"
16+
exclude = ["foo"]
17+
include = ["foo"]
18+
license = "MIT OR Apache-2.0"
19+
publish = false
20+
repository = "foo"
21+
version = "1.2.3"

tests/testsuite/init/inherit_workspace_package_table/in/README.md

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
println!("Check that our file is not overwritten")
3+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
pub fn add(left: usize, right: usize) -> usize {
2+
left + right
3+
}
4+
5+
#[cfg(test)]
6+
mod tests {
7+
use super::*;
8+
9+
#[test]
10+
fn it_works() {
11+
let result = add(2, 2);
12+
assert_eq!(result, 4);
13+
}
14+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
use cargo_test_support::compare::assert_ui;
2+
use cargo_test_support::curr_dir;
3+
use cargo_test_support::CargoCommand;
4+
use cargo_test_support::Project;
5+
6+
#[cargo_test]
7+
fn case() {
8+
let project = Project::from_template(curr_dir!().join("in"));
9+
let project_root = project.root();
10+
let cwd = &project_root;
11+
12+
snapbox::cmd::Command::cargo_ui()
13+
.arg("init")
14+
.args(["crates/foo"])
15+
.current_dir(cwd)
16+
.assert()
17+
.success()
18+
.stdout_matches_path(curr_dir!().join("stdout.log"))
19+
.stderr_matches_path(curr_dir!().join("stderr.log"));
20+
21+
assert_ui().subset_matches(curr_dir!().join("out"), &project_root);
22+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[workspace]
2+
members = [
3+
"crates/*",
4+
]
5+
6+
[workspace.package]
7+
authors = ["Rustaceans"]
8+
description = "foo"
9+
edition = "2018"
10+
homepage = "foo"
11+
keywords = ["foo", "bar"]
12+
readme = "README.md"
13+
rust-version = "1.67.0"
14+
categories = ["algorithms"]
15+
documentation = "foo"
16+
exclude = ["foo"]
17+
include = ["foo"]
18+
license = "MIT OR Apache-2.0"
19+
publish = false
20+
repository = "foo"
21+
version = "1.2.3"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[package]
2+
name = "foo"
3+
authors.workspace = true
4+
description.workspace = true
5+
edition.workspace = true
6+
homepage.workspace = true
7+
keywords.workspace = true
8+
readme.workspace = true
9+
rust-version.workspace = true
10+
categories.workspace = true
11+
documentation.workspace = true
12+
exclude.workspace = true
13+
include.workspace = true
14+
license.workspace = true
15+
publish.workspace = true
16+
repository.workspace = true
17+
version.workspace = true
18+
19+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
20+
21+
[dependencies]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
println!("Check that our file is not overwritten")
3+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
pub fn add(left: usize, right: usize) -> usize {
2+
left + right
3+
}
4+
5+
#[cfg(test)]
6+
mod tests {
7+
use super::*;
8+
9+
#[test]
10+
fn it_works() {
11+
let result = add(2, 2);
12+
assert_eq!(result, 4);
13+
}
14+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Created binary (application) package

tests/testsuite/init/inherit_workspace_package_table/stdout.log

Whitespace-only changes.

tests/testsuite/init/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ mod git_ignore_exists_no_conflicting_entries;
2121
mod ignores_failure_to_format_source;
2222
mod inferred_bin_with_git;
2323
mod inferred_lib_with_git;
24+
mod inherit_workspace_package_table;
2425
mod invalid_dir_name;
2526
mod lib_already_exists_nosrc;
2627
mod lib_already_exists_src;

0 commit comments

Comments
 (0)