File tree 2 files changed +18
-0
lines changed
2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,15 @@ fn simple_bin() {
54
54
existing_file ( ) ) ;
55
55
}
56
56
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
+
57
66
fn bin_already_exists ( explicit : bool , rellocation : & str ) {
58
67
let path = paths:: root ( ) . join ( "foo" ) ;
59
68
fs:: create_dir_all ( & path. join ( "src" ) ) . unwrap ( ) ;
Original file line number Diff line number Diff line change @@ -55,6 +55,15 @@ fn simple_bin() {
55
55
existing_file ( ) ) ;
56
56
}
57
57
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
+
58
67
#[ test]
59
68
fn simple_git ( ) {
60
69
let td = TempDir :: new ( "cargo" ) . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments