airmux 0.1.0

Just another tmux session manager
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use super::*;

#[test]
fn process_command_escapes_pounds() {
    let result = process_command(String::from("#hello #world##"));

    assert_eq!(result, "##hello ##world####")
}

#[test]
fn process_command_removes_line_carriages() {
    let result = process_command(String::from("hello\r\n\nworld\n\r\n"));

    assert_eq!(result, "hello  world  ")
}