소스 검색

import on test

Nikos Atlas 2 년 전
부모
커밋
188eb3ac7c
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      __tests__/test_leaf_strategy.py

+ 2 - 2
__tests__/test_leaf_strategy.py

@@ -3,7 +3,7 @@ import pytest
 import spacy
 from spacy import displacy
 
-# import here your file
+from src.strategies.leaf_strategy import leaf_strategy
 
 nlp = spacy.load("en_core_web_trf")
 
@@ -13,6 +13,6 @@ nlp = spacy.load("en_core_web_trf")
 def test_leaf_strategy(text, expected):
     doc = nlp(text)
 
-    # result = leaf_strategy(doc)
+    result = leaf_strategy(doc)
 
     # assert result == expected