File tree 3 files changed +15
-4
lines changed
3 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
[package ]
4
4
name = " pks"
5
- version = " 0.2.19 "
5
+ version = " 0.2.20 "
6
6
edition = " 2021"
7
7
description = " Welcome! Please see https://github.com/rubyatscale/pks for more information!"
8
8
license = " MIT"
Original file line number Diff line number Diff line change @@ -83,7 +83,8 @@ enum Command {
83
83
} ,
84
84
85
85
#[ clap(
86
- about = "Update package_todo.yml files with the current violations"
86
+ about = "Update package_todo.yml files with the current violations" ,
87
+ alias = "update-todo"
87
88
) ]
88
89
Update ,
89
90
Original file line number Diff line number Diff line change @@ -6,14 +6,24 @@ mod common;
6
6
use pretty_assertions:: assert_eq;
7
7
8
8
#[ test]
9
+ #[ serial]
9
10
// This and the next test are run in serial because they both use the same fixtures.
11
+ fn update ( ) -> Result < ( ) , Box < dyn Error > > {
12
+ test_update ( "update" )
13
+ }
14
+
15
+ #[ test]
10
16
#[ serial]
11
- fn test_update ( ) -> Result < ( ) , Box < dyn Error > > {
17
+ fn update_todo ( ) -> Result < ( ) , Box < dyn Error > > {
18
+ test_update ( "update-todo" )
19
+ }
20
+
21
+ fn test_update ( command : & str ) -> Result < ( ) , Box < dyn Error > > {
12
22
Command :: cargo_bin ( "pks" ) ?
13
23
. arg ( "--project-root" )
14
24
. arg ( "tests/fixtures/simple_app" )
15
25
. arg ( "--debug" )
16
- . arg ( "update" )
26
+ . arg ( command )
17
27
. assert ( )
18
28
. success ( )
19
29
. stdout ( predicate:: str:: contains (
You can’t perform that action at this time.
0 commit comments