mirror of
https://github.com/KrisKennaway/ii-vision.git
synced 2024-12-21 05:30:20 +00:00
26 lines
582 B
Python
26 lines
582 B
Python
|
import unittest
|
||
|
|
||
|
import frame_grabber
|
||
|
|
||
|
|
||
|
class TestFileFrameGrabber(unittest.TestCase):
|
||
|
def test_output_dir(self):
|
||
|
self.assertEqual(
|
||
|
"/foo/bar",
|
||
|
frame_grabber.FileFrameGrabber._output_dir("/foo/bar.mp4")
|
||
|
)
|
||
|
|
||
|
self.assertEqual(
|
||
|
"/foo/bar.blee",
|
||
|
frame_grabber.FileFrameGrabber._output_dir("/foo/bar.blee.mp4")
|
||
|
)
|
||
|
|
||
|
self.assertEqual(
|
||
|
"/foo/bar blee",
|
||
|
frame_grabber.FileFrameGrabber._output_dir("/foo/bar blee.mp4")
|
||
|
)
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|