summaryrefslogtreecommitdiffstats
path: root/tests/testsuite/line_break.rs
blob: 5806ca11de0d15f82fbaf8334c18ec96b894b00f (plain)
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(())
}