starship 0.8.7

The cross-shell prompt for astronauts. ☄🌌️
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::io;

use crate::common;

#[test]
fn line_break_module() -> io::Result<()> {
    let output = common::render_module("line_break").output()?;
    let actual = String::from_utf8(output.stdout).unwrap();

    let expected = "\n";
    assert_eq!(expected, actual);
    Ok(())
}