docbox-management 0.12.0

Management core library for managing docbox used by the cli and other tools
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/// Tests that the root can be initialized
#[tokio::test]
async fn test_initialize() {
    // TODO:
}

/// Tests that the root can be initialized and will tolerate
/// the root database already existing
#[tokio::test]
async fn test_initialize_tolerate_existing_database() {
    // TODO:
}

/// Tests that initialization can be detected
#[tokio::test]
async fn test_is_initialized() {
    // TODO:
}