[go: up one dir, main page]

ci_info 0.1.5

Provides current CI environment information.
Documentation
1
2
3
4
5
6
7
8
9
use super::*;

#[test]
fn ci_info_new() {
    let info = CiInfo::new();

    assert!(info.vendor.is_none());
    assert!(!info.ci);
}