Files @ 3e580c666cd1
Branch filter:

Location: rattail-project/rattail/tests/test_core.py

Lance Edgar
Remove `make-config` command, and edbob dependency!

The `make-config` command still seems like a good idea, but hadn't been
implemented properly, and was just an eyesore at this point...
# -*- coding: utf-8 -*-

from __future__ import unicode_literals

from unittest import TestCase

from rattail import core


class TestCore(TestCase):

    def test_get_uuid(self):
        uuid = core.get_uuid()
        self.assertTrue(isinstance(uuid, str))
        self.assertEqual(len(uuid), 32)