File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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]
You can’t perform that action at this time.
0 commit comments