14 lines
244 B
Python
14 lines
244 B
Python
from django.test import TestCase
|
|
|
|
# Create your tests here.
|
|
def debug(func):
|
|
def wrapper():
|
|
print("[DEBUG]: enter {}()".format(func.__name__))
|
|
return func()
|
|
return wrapper
|
|
|
|
@debug
|
|
def hello():
|
|
print("hello")
|
|
|
|
hello() |