Dashboard Temp Share Shortlinks Frames API

abh - HTMLify profile

files of /abh/def/TESTS/

TESTS.py /abh/def/TESTS/TESTS.py
449 Views
0 Comments
class Test:
def __init__(self, function):
self.passed = 0
self.failed = 0
self.function = function


__init__.py /abh/def/TESTS/__init__.py
367 Views
0 Comments
from .TESTS import *

are_anagrams.py /abh/def/TESTS/are_anagrams.py
402 Views
0 Comments
TESTCCASES = [
{
"positional": ("string", "string",),
"keyword": {},
"return": True,
"msg":
func.py /abh/def/TESTS/func.py
465 Views
0 Comments
TESTCASES = [
{ # test case structure
"positional": ("arguments", "in", "tuples",), # Positional arguments as Tupl
is_consonant.py /abh/def/TESTS/is_consonant.py
467 Views
0 Comments
TESTCASES = [
{
"positional": ("H",),
"keyword": {},
"return": True,
"msg": ""
},
{
is_divisible_by.py /abh/def/TESTS/is_divisible_by.py
425 Views
0 Comments
TESTCCASES = [
{
"positional": (25, 5),
"keyword": {},
"return": True,
"msg": "",
},

is_even.py /abh/def/TESTS/is_even.py
376 Views
0 Comments
TESTCASES = [
{
"positional": (2,),
"keyword": {},
"return": True,
"msg": "",
},
{
is_isogram.py /abh/def/TESTS/is_isogram.py
452 Views
0 Comments
TESTCASES = [
{
"positional": ("Hello",),
"keyword": {},
"return": False,
"msg": ""
},

is_perfect_square.py /abh/def/TESTS/is_perfect_square.py
777 Views
0 Comments
TESTCASES = [
{
"positional": (2,),
"keyword": {},
"return": False,
"msg": "",
},
{