cloudfox-coreshift-core 1.2.21

Low-level Linux and Android systems primitives for CoreShift (CloudFox)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::path::PathBuf;

fn repo_path(relative: &str) -> PathBuf {
    PathBuf::from(env!("CARGO_MANIFEST_DIR")).join(relative)
}

#[test]
fn ci_workflow_exists() {
    assert!(repo_path(".github/workflows/ci.yml").is_file());
}

#[test]
fn license_file_exists() {
    assert!(repo_path("LICENSE").is_file());
}