├── LICENSE ├── README.md ├── gpredis.pl ├── noweb └── README.md └── tests ├── failures ├── runalltests ├── runtest ├── test_gpredis.pl ├── test_hashes.pl ├── test_lists.pl ├── test_operation.pl ├── test_strings.pl └── testing_framework.pl /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacstheviking/gnuprolog-redisclient/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacstheviking/gnuprolog-redisclient/HEAD/README.md -------------------------------------------------------------------------------- /gpredis.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacstheviking/gnuprolog-redisclient/HEAD/gpredis.pl -------------------------------------------------------------------------------- /noweb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacstheviking/gnuprolog-redisclient/HEAD/noweb/README.md -------------------------------------------------------------------------------- /tests/failures: -------------------------------------------------------------------------------- 1 | ./runalltests | grep "failed" 2 | -------------------------------------------------------------------------------- /tests/runalltests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacstheviking/gnuprolog-redisclient/HEAD/tests/runalltests -------------------------------------------------------------------------------- /tests/runtest: -------------------------------------------------------------------------------- 1 | gprolog --consult-file test_$1.pl 2 | -------------------------------------------------------------------------------- /tests/test_gpredis.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacstheviking/gnuprolog-redisclient/HEAD/tests/test_gpredis.pl -------------------------------------------------------------------------------- /tests/test_hashes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacstheviking/gnuprolog-redisclient/HEAD/tests/test_hashes.pl -------------------------------------------------------------------------------- /tests/test_lists.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacstheviking/gnuprolog-redisclient/HEAD/tests/test_lists.pl -------------------------------------------------------------------------------- /tests/test_operation.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacstheviking/gnuprolog-redisclient/HEAD/tests/test_operation.pl -------------------------------------------------------------------------------- /tests/test_strings.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacstheviking/gnuprolog-redisclient/HEAD/tests/test_strings.pl -------------------------------------------------------------------------------- /tests/testing_framework.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacstheviking/gnuprolog-redisclient/HEAD/tests/testing_framework.pl --------------------------------------------------------------------------------