Files
clint/test_clint.py
T
Kenneth Reitz 3cb3314d34 dumb docs start
2011-03-20 22:19:58 -04:00

32 lines
457 B
Python
Executable File

#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Clint Test Suite."""
import unittest
class TablibTestCase(unittest.TestCas):
"""Tablib test cases."""
def setUp(self):
import clint
def tearDown(self):
pass
def test_tsplit(self):
from clint.utils import tsplit
s = 'thing1,thing2-thing3/thing4*thing5'
_s = tsplit(s, [',-/*'])
self.
if __name__ == '__main__':
unittest.main()