File: interface.py

package info (click to toggle)
dfwinreg 20240316-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 78,752 kB
  • sloc: python: 3,705; sh: 22; makefile: 17
file content (34 lines) | stat: -rw-r--r-- 827 bytes parent folder | download
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
31
32
33
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Tests for the Windows Registry object interfaces."""

import unittest

from tests import test_lib


class WinRegistryFileTest(test_lib.BaseTestCase):
  """Tests for the Windows Registry file interface."""

  # TODO: add tests for RecurseKeys
  # TODO: add tests for SetKeyPathPrefix


class WinRegistryKeyTest(test_lib.BaseTestCase):
  """Tests for the Windows Registry key interface."""

  # TODO: add tests for path property
  # TODO: add tests for RecurseKeys


class WinRegistryValueTest(test_lib.BaseTestCase):
  """Tests for the Windows Registry value interface."""

  # TODO: add tests for DataIsBinaryData
  # TODO: add tests for DataIsInteger
  # TODO: add tests for DataIsMultiString
  # TODO: add tests for DataIsString


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