@@ -20,7 +20,7 @@ fn default_options() {
20
20
21
21
#[ test]
22
22
fn good_options ( ) {
23
- let o = Opts :: parse_from ( & [
23
+ let o = Opts :: parse_from ( [
24
24
"test" ,
25
25
"-q" ,
26
26
"-p" ,
@@ -48,7 +48,7 @@ fn good_options() {
48
48
fn unexpected_option ( ) {
49
49
assert ! (
50
50
Opts :: command( )
51
- . try_get_matches_from( & [ "test" , "unexpected" ] )
51
+ . try_get_matches_from( [ "test" , "unexpected" ] )
52
52
. is_err( )
53
53
) ;
54
54
}
@@ -57,7 +57,7 @@ fn unexpected_option() {
57
57
fn unexpected_flag ( ) {
58
58
assert ! (
59
59
Opts :: command( )
60
- . try_get_matches_from( & [ "test" , "--flag" ] )
60
+ . try_get_matches_from( [ "test" , "--flag" ] )
61
61
. is_err( )
62
62
) ;
63
63
}
@@ -66,19 +66,19 @@ fn unexpected_flag() {
66
66
fn mandatory_separator ( ) {
67
67
assert ! (
68
68
Opts :: command( )
69
- . try_get_matches_from( & [ "test" , "--emit" ] )
69
+ . try_get_matches_from( [ "test" , "--emit" ] )
70
70
. is_err( )
71
71
) ;
72
72
assert ! (
73
73
Opts :: command( )
74
- . try_get_matches_from( & [ "test" , "--" , "--emit" ] )
74
+ . try_get_matches_from( [ "test" , "--" , "--emit" ] )
75
75
. is_ok( )
76
76
) ;
77
77
}
78
78
79
79
#[ test]
80
80
fn multiple_packages_one_by_one ( ) {
81
- let o = Opts :: parse_from ( & [
81
+ let o = Opts :: parse_from ( [
82
82
"test" ,
83
83
"-p" ,
84
84
"package1" ,
@@ -92,7 +92,7 @@ fn multiple_packages_one_by_one() {
92
92
93
93
#[ test]
94
94
fn multiple_packages_grouped ( ) {
95
- let o = Opts :: parse_from ( & [
95
+ let o = Opts :: parse_from ( [
96
96
"test" ,
97
97
"--package" ,
98
98
"package1" ,
@@ -108,7 +108,7 @@ fn multiple_packages_grouped() {
108
108
fn empty_packages_1 ( ) {
109
109
assert ! (
110
110
Opts :: command( )
111
- . try_get_matches_from( & [ "test" , "-p" ] )
111
+ . try_get_matches_from( [ "test" , "-p" ] )
112
112
. is_err( )
113
113
) ;
114
114
}
@@ -117,7 +117,7 @@ fn empty_packages_1() {
117
117
fn empty_packages_2 ( ) {
118
118
assert ! (
119
119
Opts :: command( )
120
- . try_get_matches_from( & [ "test" , "-p" , "--" , "--check" ] )
120
+ . try_get_matches_from( [ "test" , "-p" , "--" , "--check" ] )
121
121
. is_err( )
122
122
) ;
123
123
}
@@ -126,7 +126,7 @@ fn empty_packages_2() {
126
126
fn empty_packages_3 ( ) {
127
127
assert ! (
128
128
Opts :: command( )
129
- . try_get_matches_from( & [ "test" , "-p" , "--verbose" ] )
129
+ . try_get_matches_from( [ "test" , "-p" , "--verbose" ] )
130
130
. is_err( )
131
131
) ;
132
132
}
@@ -135,7 +135,7 @@ fn empty_packages_3() {
135
135
fn empty_packages_4 ( ) {
136
136
assert ! (
137
137
Opts :: command( )
138
- . try_get_matches_from( & [ "test" , "-p" , "--check" ] )
138
+ . try_get_matches_from( [ "test" , "-p" , "--check" ] )
139
139
. is_err( )
140
140
) ;
141
141
}
0 commit comments