Skip to content

Commit

Permalink
fix : color_check function tests added to function_test.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sepandhaghighi committed Dec 31, 2023
1 parent f0e3716 commit bb95ce5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Test/function_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,20 @@
...
>>> online_help(4)
...
>>> from pycm.pycm_output import *
>>> from pycm.pycm_overall_func import *
>>> from pycm.pycm_class_func import *
>>> from pycm.pycm_ci import *
>>> from pycm.pycm_interpret import *
>>> from pycm.pycm_util import *
>>> color_check("red")
[255, 0, 0]
>>> color_check((255,2,2))
[255, 2, 2]
>>> color_check(None)
[0, 0, 0]
>>> color_check("wrong_color")
[0, 0, 0]
>>> inv_erf(-1)
'None'
>>> inv_erf(1)
Expand Down

0 comments on commit bb95ce5

Please sign in to comment.