Skip to content

Commit a0a7752

Browse files
author
Jonathan Turner
committed
Add tests for passing both --bin and --lib
1 parent a882abe commit a0a7752

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

tests/init.rs

+9
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,15 @@ fn simple_bin() {
5454
existing_file());
5555
}
5656

57+
#[test]
58+
fn both_lib_and_bin() {
59+
let td = TempDir::new("cargo").unwrap();
60+
assert_that(cargo_process("init").arg("--lib").arg("--bin").cwd(td.path().clone())
61+
.env("USER", "foo"),
62+
execs().with_status(101).with_stderr(
63+
"[ERROR] can't specify both lib and binary outputs"));
64+
}
65+
5766
fn bin_already_exists(explicit: bool, rellocation: &str) {
5867
let path = paths::root().join("foo");
5968
fs::create_dir_all(&path.join("src")).unwrap();

tests/new.rs

+9
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,15 @@ fn simple_bin() {
5555
existing_file());
5656
}
5757

58+
#[test]
59+
fn both_lib_and_bin() {
60+
let td = TempDir::new("cargo").unwrap();
61+
assert_that(cargo_process("new").arg("--lib").arg("--bin").arg("foo").cwd(td.path().clone())
62+
.env("USER", "foo"),
63+
execs().with_status(101).with_stderr(
64+
"[ERROR] can't specify both lib and binary outputs"));
65+
}
66+
5867
#[test]
5968
fn simple_git() {
6069
let td = TempDir::new("cargo").unwrap();

0 commit comments

Comments
 (0)