rraval_workflows/
lib.rs

1pub const NAME: &str = "rraval workflow lib";
2
3#[cfg(test)]
4mod test {
5    use crate::NAME;
6
7    #[test]
8    fn test_non_empty() {
9        assert!(!NAME.is_empty());
10    }
11}