Skip to content

Commit

Permalink
test: utils 기능들의 테스트 케이스를 개선합니다 (#151)
Browse files Browse the repository at this point in the history
* test: hasBatchim 함수의 테스트 케이스를 추가합니다

* test: hasSingleBatchim의 테스트 케이스를 추가합니다
  • Loading branch information
po4tion authored Jun 30, 2024
1 parent 0624b5a commit ad05e4c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/utils.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,18 @@ describe('hasBatchim', () => {
expect(hasBatchim('')).toBe(false);
});
});

describe('완성된 한글이 아닌 경우', () => {
it('한글이 자음 또는 모음으로만 구성된 경우 false를 반환한다.', () => {
expect(hasBatchim('ㄱ')).toBe(false);
expect(hasBatchim('ㅏ')).toBe(false);
});

it('한글 외의 문자를 입력하면 false를 반환한다', () => {
expect(hasBatchim('cat')).toBe(false);
expect(hasBatchim('!')).toBe(false);
});
});
});

describe('hasSingleBatchim', () => {
Expand All @@ -54,6 +66,12 @@ describe('hasSingleBatchim', () => {
expect(hasSingleBatchim('토')).toBe(false);
expect(hasSingleBatchim('서')).toBe(false);
});

it('한글 외의 문자를 입력하면 false를 반환한다.', () => {
expect(hasSingleBatchim('cat')).toBe(false);
expect(hasSingleBatchim('')).toBe(false);
expect(hasSingleBatchim('?')).toBe(false);
});
});
});

Expand Down

0 comments on commit ad05e4c

Please sign in to comment.