diff options
Diffstat (limited to 'test_single_image.sh')
| -rwxr-xr-x | test_single_image.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/test_single_image.sh b/test_single_image.sh new file mode 100755 index 0000000..3dde0de --- /dev/null +++ b/test_single_image.sh @@ -0,0 +1,13 @@ +#!/bin/bash +# Test script to verify single image functionality + +echo "Building totalrecall..." +go build -o totalrecall ./cmd/totalrecall || exit 1 + +echo "Testing CLI mode with a single word..." +./totalrecall "котка" || exit 1 + +echo "Checking generated files..." +ls -la output/котка* + +echo "Test completed successfully!"
\ No newline at end of file |
