bitpill 0.3.3

A personal medication management TUI application built in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use bitpill::infrastructure::container::Container;
use tempfile::tempdir;

#[test]
fn container_new_with_paths_builds_successfully() {
    let dir = tempdir().unwrap();
    let _container = Container::new(
        dir.path().join("medications.json"),
        dir.path().join("doses.json"),
        dir.path().join("settings.json"),
    );
}