mirror of
https://github.com/seriousm4x/UpSnap.git
synced 2026-08-02 02:18:49 -04:00
8 lines
156 B
Python
8 lines
156 B
Python
from django.test import TestCase
|
|
|
|
# Create your tests here.
|
|
|
|
from celery.schedules import crontab_parser
|
|
|
|
print(dir(crontab_parser().parse("0 9 * * 1,5")))
|