21 lines
392 B
Python
21 lines
392 B
Python
#!/usr/bin/env python
|
|
|
|
"""Tests for `eos_midi` package."""
|
|
|
|
|
|
import unittest
|
|
|
|
from eos_midi import eos_midi
|
|
|
|
|
|
class TestEos_midi(unittest.TestCase):
|
|
"""Tests for `eos_midi` package."""
|
|
|
|
def setUp(self):
|
|
"""Set up test fixtures, if any."""
|
|
|
|
def tearDown(self):
|
|
"""Tear down test fixtures, if any."""
|
|
|
|
def test_000_something(self):
|
|
"""Test something."""
|