Skip to content

Commit 7a1e6c4

Browse files
committed
Refactor test
1 parent a728b42 commit 7a1e6c4

1 file changed

Lines changed: 19 additions & 19 deletions

File tree

libs/braillify/src/main.rs

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -33,25 +33,25 @@ mod tests {
3333
})
3434
}
3535

36-
// assert_cmd를 사용한 통합 테스트들
37-
#[test]
38-
#[serial]
39-
fn test_braillify_integration_single_word() {
40-
let mut cmd = get_built_binary().command();
41-
cmd.arg("안녕");
42-
let assert = cmd
43-
.assert()
44-
.success()
45-
.stdout(predicate::str::is_empty().not());
46-
47-
// 점자 유니코드가 포함되어 있는지 확인
48-
let stdout = String::from_utf8_lossy(&assert.get_output().stdout);
49-
assert!(
50-
stdout
51-
.chars()
52-
.any(|c| c as u32 >= 0x2800 && c as u32 <= 0x28FF)
53-
);
54-
}
36+
// // assert_cmd를 사용한 통합 테스트들
37+
// #[test]
38+
// #[serial]
39+
// fn test_braillify_integration_single_word() {
40+
// let mut cmd = get_built_binary().command();
41+
// cmd.arg("안녕");
42+
// let assert = cmd
43+
// .assert()
44+
// .success()
45+
// .stdout(predicate::str::is_empty().not());
46+
47+
// // 점자 유니코드가 포함되어 있는지 확인
48+
// let stdout = String::from_utf8_lossy(&assert.get_output().stdout);
49+
// assert!(
50+
// stdout
51+
// .chars()
52+
// .any(|c| c as u32 >= 0x2800 && c as u32 <= 0x28FF)
53+
// );
54+
// }
5555

5656
// #[test]
5757
// #[serial]

0 commit comments

Comments
 (0)