git-next-core 0.14.1

core for git-next, the trunk-based development manager
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod message;
mod newtype;
mod owned_string;

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

    #[test]
    fn macro_s_to_string() {
        let s: String = s!("this");

        assert_eq!(s, "this");
    }
}