mirror of
https://github.com/rembo10/headphones.git
synced 2026-07-21 00:14:02 +01:00
10 lines
183 B
Python
10 lines
183 B
Python
import unittest
|
|
from unittest import TestCase
|
|
import mock
|
|
|
|
from headphones.config import path
|
|
|
|
class ConfigPathTest(TestCase):
|
|
def test_path(self):
|
|
self.assertFalse(True)
|