mglib/test/test_step.py

13 lines
258 B
Python
Raw Normal View History

2020-05-04 12:35:08 +02:00
import unittest
2020-05-04 12:41:11 +02:00
from mglib.step import Step
2020-05-04 12:35:08 +02:00
class TestStep(unittest.TestCase):
def test_step(self):
step = Step(1)
self.assertFalse(
step.is_thumbnail,
f"{step} is is_thumbnail, but it should not be!"
)