1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

tests ~ refactor/polish spelling (comments, names, and exceptions)

This commit is contained in:
Roy Ivy III 2021-05-30 00:10:54 -05:00
parent 5c9b474cc8
commit 4e20dedf58
63 changed files with 368 additions and 302 deletions

View file

@ -1,7 +1,7 @@
use crate::common::util::*;
#[test]
fn test_stdin_nonewline() {
fn test_stdin_no_newline() {
new_ucmd!()
.pipe_in("No Newline")
.run()
@ -41,6 +41,7 @@ fn test_padding_with_overflow() {
#[test]
fn test_sections_and_styles() {
// spell-checker:disable
for &(fixture, output) in &[
(
"section.txt",
@ -63,4 +64,5 @@ fn test_sections_and_styles() {
.run()
.stdout_is(output);
}
// spell-checker:enable
}