aboutsummaryrefslogtreecommitdiffstats
path: root/test/query/test_validator.py
blob: 0e88ad3bd70b6943ba4c73ead354d4d4447a7f35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
"""

Part of the tagit test suite.
A copy of the license is provided with the project.
Author: Matthias Baumgartner, 2022
"""
# imports
import unittest

# bsfs imports

# objects to test
from bsfs.query.validator import Filter


## code ##

class TestFilter(unittest.TestCase):
    def test_parse(self):
        raise NotImplementedError()

    # FIXME: subtests for individual functions


## main ##

if __name__ == '__main__':
    unittest.main()

## EOF ##