| 670 | */ |
| 671 | |
| 672 | static void test_cachedb_backends(void) |
| 673 | { |
| 674 | #ifdef CACHEDB_SKIP_BACKEND_TESTS |
| 675 | return; |
| 676 | #endif |
| 677 | |
| 678 | test_cachedb_api("mongodb", NULL, NULL); |
| 679 | test_cachedb_api("cassandra", "test1", "test2"); |
| 680 | |
| 681 | test_cachedb_api("redis", NULL, NULL); |
| 682 | |
| 683 | // todo(); |
| 684 | // skip tests here |
| 685 | // end_todo; |
| 686 | } |
| 687 | |
| 688 | |
| 689 | static void test_cachedb_url(void) |
no test coverage detected