@@ -29,8 +29,8 @@ EXAMPLES:\n\
2929 Generate fixtures into a directory:\n \
3030 vortex-compat generate --output /tmp/fixtures\n \
3131\n \
32- Check fixtures (allow extra files from older versions ):\n \
33- vortex-compat check --dir /tmp/v0.62.0 --mode subset \n \
32+ Check fixtures (default, old dir may be missing new fixtures ):\n \
33+ vortex-compat check --dir /tmp/v0.62.0\n \
3434\n \
3535 Check fixtures (strict, must match exactly):\n \
3636 vortex-compat check --dir /tmp/v0.63.0 --mode exact\n \
@@ -78,11 +78,11 @@ enum Commands {
7878
7979 /// How to handle mismatches between directory contents and known fixtures.
8080 ///
81- /// subset — directory may have extra files (skipped), all known must be present.
82- /// Best for checking old versions that may have since-removed fixtures.
83- /// exact — directory must match current fixtures 1:1. No extras, no missing.
8481 /// superset — directory may be missing files (skipped), no unknown files allowed.
85- #[ arg( long, default_value = "subset" , value_name = "MODE" ) ]
82+ /// Best for checking old versions that predate newly-added fixtures.
83+ /// exact — directory must match current fixtures 1:1. No extras, no missing.
84+ /// subset — directory may have extra files (skipped), all known must be present.
85+ #[ arg( long, default_value = "superset" , value_name = "MODE" ) ]
8686 mode : check:: Mode ,
8787
8888 /// Fixture name substrings to exclude from checking (comma-separated).
0 commit comments