mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
16 lines
329 B
Python
16 lines
329 B
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
vdirsyncer.tests.test_cli
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
:copyright: (c) 2014 Markus Unterwaditzer
|
|
:license: MIT, see LICENSE for more details.
|
|
'''
|
|
|
|
from unittest import TestCase
|
|
import vdirsyncer.cli as cli
|
|
import vdirsyncer.exceptions as exceptions
|
|
|
|
|
|
class CliTests(TestCase):
|
|
pass
|