1
2
3
4
5
6
7
8
9
10
11
12
13
//! This is the library.

pub const NAME: &str = "rraval workflow lib";

#[cfg(test)]
mod test {
    use crate::NAME;

    #[test]
    fn test_non_empty() {
        assert!(!NAME.is_empty());
    }
}