File: interface.py

package info (click to toggle)
dfwinreg 20190122-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 5,820 kB
  • sloc: python: 2,586; sh: 121; makefile: 38
file content (36 lines) | stat: -rw-r--r-- 868 bytes parent folder | download | duplicates (2)
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
35
36
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Tests for the Windows Registry object interfaces."""

from __future__ import unicode_literals

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()