blob: f5a8c93baf7a685beecbb1fc73fa3d737a9d9c97 (
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
|
#!/usr/bin/env python
#
# Copyright 2019,2020 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
#
from gnuradio import gr, gr_unittest
class test_prefs (gr_unittest.TestCase):
def test_001(self):
p = gr.prefs()
# Read some options
self.assertFalse(p.has_option('doesnt', 'exist'))
# At the time these tests are run, there is not necessarily a default
# configuration on the build system, so not much to do with testing
# here
if __name__ == '__main__':
gr_unittest.run(test_prefs)
|