Skip to content

Commit

Permalink
Add a quick test, to check the pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
dave1010 committed Dec 3, 2023
1 parent c551606 commit 1183c57
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Empty file added tests/__init__.py
Empty file.
6 changes: 6 additions & 0 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from clipea import utils


def test_anystr_force_str():
assert utils.anystr_force_str(b'hello') == 'hello'
assert utils.anystr_force_str('hello') == 'hello'

0 comments on commit 1183c57

Please sign in to comment.