feat: add testing infrastructure

This commit is contained in:
alban 2023-06-03 18:43:04 +02:00
parent 05f43c680c
commit 4ce35dfd0d
2 changed files with 8 additions and 0 deletions

2
src/lib.rs Normal file
View File

@ -0,0 +1,2 @@
pub mod conf;
pub mod redis_ctrl;

6
tests/test_conf.rs Normal file
View File

@ -0,0 +1,6 @@
use lj_rust::conf;
#[test]
fn it_adds_two() {
assert_eq!(4, 4);
}