windows_utilities.py 369 B

123456789101112131415161718
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. __author__ = "Christian Heider Nielsen"
  4. __doc__ = r"""
  5. Created on 30-09-2020
  6. """
  7. from draugr.os_utilities.windows_utilities import WindowsSettings
  8. def test_get_dark_mode():
  9. ws = WindowsSettings()
  10. dark_mode = ws.get_dark_mode()
  11. print(dark_mode)
  12. assert isinstance(dark_mode, bool)