rich_lib 0.1.1

A library with various extension and helper functionality.
Documentation
/************************************************************************************************/
/************************************************************************************************/
/************************************************************************************************/

use crate::lines::*;
use crate::tests::helper::*;

/************************************************************************************************/
/************************************************************************************************/
/************************************************************************************************/

#[test]
fn split_test() {
    let s = create_string();
    let sl = create_string_lines();

    assert_eq!(s.split(), sl);
}

/************************************************************************************************/
/************************************************************************************************/
/************************************************************************************************/