├── .gitignore ├── README.adoc ├── SUMMARY.adoc ├── book.json ├── images ├── check-leak-pkg-path-gc.gnu ├── check-leak-pkg-path-gc.png ├── check-leak-pkg-path.gnu └── check-leak-pkg-path.png ├── testing ├── README.adoc ├── introduction.adoc ├── preparing-tests.adoc ├── running-tests.adoc ├── test-file-layout.adoc ├── test-modes.adoc ├── test-nginx.adoc ├── test-suite-layout.adoc └── testing-erroneous-cases.adoc └── util ├── fmt.pl └── word-count.pl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/programming-openresty/HEAD/.gitignore -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/programming-openresty/HEAD/README.adoc -------------------------------------------------------------------------------- /SUMMARY.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/programming-openresty/HEAD/SUMMARY.adoc -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/programming-openresty/HEAD/book.json -------------------------------------------------------------------------------- /images/check-leak-pkg-path-gc.gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/programming-openresty/HEAD/images/check-leak-pkg-path-gc.gnu -------------------------------------------------------------------------------- /images/check-leak-pkg-path-gc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/programming-openresty/HEAD/images/check-leak-pkg-path-gc.png -------------------------------------------------------------------------------- /images/check-leak-pkg-path.gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/programming-openresty/HEAD/images/check-leak-pkg-path.gnu -------------------------------------------------------------------------------- /images/check-leak-pkg-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/programming-openresty/HEAD/images/check-leak-pkg-path.png -------------------------------------------------------------------------------- /testing/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/programming-openresty/HEAD/testing/README.adoc -------------------------------------------------------------------------------- /testing/introduction.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/programming-openresty/HEAD/testing/introduction.adoc -------------------------------------------------------------------------------- /testing/preparing-tests.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/programming-openresty/HEAD/testing/preparing-tests.adoc -------------------------------------------------------------------------------- /testing/running-tests.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/programming-openresty/HEAD/testing/running-tests.adoc -------------------------------------------------------------------------------- /testing/test-file-layout.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/programming-openresty/HEAD/testing/test-file-layout.adoc -------------------------------------------------------------------------------- /testing/test-modes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/programming-openresty/HEAD/testing/test-modes.adoc -------------------------------------------------------------------------------- /testing/test-nginx.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/programming-openresty/HEAD/testing/test-nginx.adoc -------------------------------------------------------------------------------- /testing/test-suite-layout.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/programming-openresty/HEAD/testing/test-suite-layout.adoc -------------------------------------------------------------------------------- /testing/testing-erroneous-cases.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/programming-openresty/HEAD/testing/testing-erroneous-cases.adoc -------------------------------------------------------------------------------- /util/fmt.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/programming-openresty/HEAD/util/fmt.pl -------------------------------------------------------------------------------- /util/word-count.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/programming-openresty/HEAD/util/word-count.pl --------------------------------------------------------------------------------