From 6bea25dfd2d279ad30dd569aadce524b6eace5ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20P=C3=A9rex?= Date: Tue, 27 May 2025 01:18:51 +0100 Subject: [PATCH] chore: rename test directory to test-run --- README.md | 24 +++++++++++++++--- run.sh | 2 +- {test => test-run}/.gitignore | 0 .../originals/neutralizadores.doc | Bin {test => test-run}/originals/piel/la_piel.odt | Bin 5 files changed, 22 insertions(+), 4 deletions(-) rename {test => test-run}/.gitignore (100%) rename {test => test-run}/originals/neutralizadores.doc (100%) rename {test => test-run}/originals/piel/la_piel.odt (100%) diff --git a/README.md b/README.md index 45739a8..15e4108 100644 --- a/README.md +++ b/README.md @@ -62,9 +62,27 @@ The following path will be ignored during [clean_target_directory](src/directory │   ├── ins_background.png │   └── tools ├── run.sh Script model to run -├── src -│   └── main.rs Rust source code -└── test Path to test with run.sh +├── src Rust source code +│   ├── directory_processor.rs +│   ├── error.rs +│   ├── file_type.rs +│   ├── lib.rs +│   ├── logging.rs +│   ├── main.rs +│   ├── tests Unitary tests +│   ├── tests.rs +│   └── tools.rs +├── tests Integration tests +│   ├── common.rs +│   ├── logging_writer_tests.rs +│   ├── test_different_log_levels.rs +│   ├── test_init_logging_append_mode.rs +│   ├── test_init_logging_with_file.rs +│   ├── test_log_detail_macro.rs +│   ├── test_log_level_changes.rs +│   ├── test_log_timed_macro.rs +│   └── test_simple_logging.rs +└── test-run Path to test with run.sh ├── documents Target path PDFs files └── originals Source path ODTs files diff --git a/run.sh b/run.sh index 8559302..8b6fa62 100755 --- a/run.sh +++ b/run.sh @@ -3,4 +3,4 @@ ROOT_PATH=${ROOT_PATH:-.} BIN_APP_PATH=${BIN_APP_PATH:-/usr/local/bin} cd $ROOT_PATH -$BIN_APP_PATH/dir-odt-to-pdf test/originals/ test/documents $@ +$BIN_APP_PATH/dir-odt-to-pdf test-run/originals/ test-run/documents $@ diff --git a/test/.gitignore b/test-run/.gitignore similarity index 100% rename from test/.gitignore rename to test-run/.gitignore diff --git a/test/originals/neutralizadores.doc b/test-run/originals/neutralizadores.doc similarity index 100% rename from test/originals/neutralizadores.doc rename to test-run/originals/neutralizadores.doc diff --git a/test/originals/piel/la_piel.odt b/test-run/originals/piel/la_piel.odt similarity index 100% rename from test/originals/piel/la_piel.odt rename to test-run/originals/piel/la_piel.odt