@@ -34,7 +34,7 @@ $CLI status --help
3434
3535``` bash
3636# Valid expert
37- $CLI publish tick-tack -toe --dry-run
37+ $CLI publish tic-tac -toe --dry-run
3838
3939# Invalid expert
4040$CLI publish nonexistent --dry-run
@@ -69,10 +69,10 @@ $CLI tag expert@1.0.0
6969
7070``` bash
7171# Nonexistent config
72- $CLI publish tick-tack -toe --dry-run --config nonexistent.toml
72+ $CLI publish tic-tac -toe --dry-run --config nonexistent.toml
7373
7474# No config in directory
75- cd /tmp && $CLI publish tick-tack -toe --dry-run
75+ cd /tmp && $CLI publish tic-tac -toe --dry-run
7676```
7777
7878** Expected** : Error message indicating config file not found, exit code 1.
@@ -98,7 +98,7 @@ $CLI --help > /dev/null && echo "OK: --help"
9898$CLI --version > /dev/null && echo " OK: --version"
9999
100100echo " === Publish Dry Run ==="
101- $CLI publish tick-tack -toe --dry-run > /dev/null && echo " OK: publish dry-run"
101+ $CLI publish tic-tac -toe --dry-run > /dev/null && echo " OK: publish dry-run"
102102$CLI publish nonexistent --dry-run 2>&1 && exit 1 || echo " OK: publish invalid expert"
103103
104104echo " === Argument Validation ==="
@@ -107,7 +107,7 @@ $CLI unpublish no-version --force 2>&1 && exit 1 || echo "OK: unpublish invalid
107107$CLI status expert@1.0.0 invalid-status 2>&1 && exit 1 || echo " OK: status invalid value"
108108
109109echo " === Config Handling ==="
110- $CLI publish tick-tack -toe --dry-run --config nonexistent.toml 2>&1 && exit 1 || echo " OK: nonexistent config"
110+ $CLI publish tic-tac -toe --dry-run --config nonexistent.toml 2>&1 && exit 1 || echo " OK: nonexistent config"
111111
112112echo " All tests passed!"
113113```
0 commit comments