├── .gitignore ├── .travis.yml ├── Makefile ├── README.markdown ├── mockeagain.c └── t ├── 000-mock-writes.c ├── 001-mock-reads.c ├── 002-pattern-matching.c ├── 003-disabled.c ├── 004-detect-unmockable-fds.c ├── echo_server.py ├── runner.c ├── test_case.c └── test_case.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/mockeagain/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/mockeagain/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/mockeagain/HEAD/Makefile -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/mockeagain/HEAD/README.markdown -------------------------------------------------------------------------------- /mockeagain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/mockeagain/HEAD/mockeagain.c -------------------------------------------------------------------------------- /t/000-mock-writes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/mockeagain/HEAD/t/000-mock-writes.c -------------------------------------------------------------------------------- /t/001-mock-reads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/mockeagain/HEAD/t/001-mock-reads.c -------------------------------------------------------------------------------- /t/002-pattern-matching.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/mockeagain/HEAD/t/002-pattern-matching.c -------------------------------------------------------------------------------- /t/003-disabled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/mockeagain/HEAD/t/003-disabled.c -------------------------------------------------------------------------------- /t/004-detect-unmockable-fds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/mockeagain/HEAD/t/004-detect-unmockable-fds.c -------------------------------------------------------------------------------- /t/echo_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/mockeagain/HEAD/t/echo_server.py -------------------------------------------------------------------------------- /t/runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/mockeagain/HEAD/t/runner.c -------------------------------------------------------------------------------- /t/test_case.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/mockeagain/HEAD/t/test_case.c -------------------------------------------------------------------------------- /t/test_case.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openresty/mockeagain/HEAD/t/test_case.h --------------------------------------------------------------------------------