dev-yuje commited on
Commit
0622a11
·
1 Parent(s): 64ad66f

chore: remove deprecated chunk text test suite

Browse files
Files changed (1) hide show
  1. tests/test_chunk_text.py +0 -16
tests/test_chunk_text.py DELETED
@@ -1,16 +0,0 @@
1
- from src.graphBuilder.neo4j.finGraph import chunk_text
2
-
3
-
4
- def test_chunk_text_empty_returns_empty_list():
5
- assert chunk_text("") == []
6
-
7
- def test_chunk_text_none_returns_empty_list():
8
- assert chunk_text(None) == []
9
-
10
- def test_chunk_text_short_text_returns_single_chunk():
11
- result = chunk_text("짧은 텍스트", size=500, overlap=50)
12
- assert len(result) == 1
13
-
14
- def test_chunk_text_long_text_splits_into_multiple_chunks():
15
- result = chunk_text("가" * 1000, size=500, overlap=50)
16
- assert len(result) >= 2