mirror of
https://github.com/AnimeThemes/animethemes-webm-verifier.git
synced 2026-07-11 01:24:30 +02:00
19 lines
493 B
Python
19 lines
493 B
Python
"""A collection of tests to verify the file against encoding standards"""
|
|
|
|
from unittest import TestCase
|
|
|
|
|
|
class TestWebm(TestCase):
|
|
"""A collection of tests to verify the file against encoding standards
|
|
|
|
:param testname: the name of the test to run
|
|
:type testname: str
|
|
|
|
:param webm_format: the file being tested
|
|
:type webm_format: WebmFormat
|
|
"""
|
|
|
|
def __init__(self, testname, webm_format):
|
|
super().__init__(testname)
|
|
self.webm_format = webm_format
|