Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kohlin
/
nlp-project
like
0
Configuration error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
85c8fab
nlp-project
/
tests
/
test_app.py
kohlin
Add CI/CD, deploy, and tests files for feature branch
067bde8
12 days ago
raw
Copy download link
history
blame
Safe
160 Bytes
import
unittest
class
TestApp
(unittest.TestCase):
def
test_sample
(
self
):
self.assertEqual(
1
+
1
,
2
)
if
__name__ ==
"__main__"
:
unittest.main()