abecc97bad
This patch adds static typing, and it switches to the Hatch package manager and its Hatchling build backend.
29 lines
998 B
Python
29 lines
998 B
Python
"""Test that a plugin can be loaded by directory.
|
|
|
|
This file is copied to a location with the name "directory.py",
|
|
and is then loaded from within the `test_cli.py` code.
|
|
"""
|
|
|
|
import os.path
|
|
from typing import Any
|
|
|
|
import dotbot
|
|
|
|
|
|
class Directory(dotbot.Plugin):
|
|
def can_handle(self, directive: str) -> bool:
|
|
return directive == "plugin_directory"
|
|
|
|
def handle(self, directive: str, _data: Any) -> bool:
|
|
if directive != "plugin_directory":
|
|
msg = f"Directory cannot handle directive {directive}"
|
|
raise ValueError(msg)
|
|
self._log.debug("Attempting to get options from Context")
|
|
options = self._context.options()
|
|
if len(options.plugin_dirs) != 1:
|
|
self._log.debug("Context.options.plugins length is %i, expected 1" % len(options.plugins))
|
|
return False
|
|
|
|
with open(os.path.abspath(os.path.expanduser("~/flag")), "w") as file:
|
|
file.write("directory plugin loading works")
|
|
return True
|