summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2024-02-04 23:28:03 -0700
committerMichael Merickel <michael@merickel.org>2024-02-04 23:28:32 -0700
commit302b8539744a24ec0d419386e2ed2f77755a3293 (patch)
tree18db674dc13f8ae50741801749b306db99f4d56f /tests
parent510dd7a484e6bcc924b801868dbc275a6f6b9ba1 (diff)
downloadpyramid-302b8539744a24ec0d419386e2ed2f77755a3293.tar.gz
pyramid-302b8539744a24ec0d419386e2ed2f77755a3293.tar.bz2
pyramid-302b8539744a24ec0d419386e2ed2f77755a3293.zip
replace pkg_resources with importlib.metadata in pshell script
Diffstat (limited to 'tests')
-rw-r--r--tests/test_scripts/test_pshell.py38
1 files changed, 37 insertions, 1 deletions
diff --git a/tests/test_scripts/test_pshell.py b/tests/test_scripts/test_pshell.py
index de7e17496..a5eeee045 100644
--- a/tests/test_scripts/test_pshell.py
+++ b/tests/test_scripts/test_pshell.py
@@ -1,4 +1,5 @@
import os
+import sys
import unittest
from . import dummy
@@ -50,7 +51,10 @@ class TestPShellCommand(unittest.TestCase):
return cmd
def _makeEntryPoints(self, command, shells):
- command.pkg_resources = dummy.DummyPkgResources(shells)
+ entry_points = [
+ DummyEntryPoint(name, value) for name, value in shells.items()
+ ]
+ command.importlib_metadata = DummyImportlibMetadata(entry_points)
def test_command_loads_default_shell(self):
command = self._makeOne()
@@ -430,3 +434,35 @@ class Test_main(unittest.TestCase):
def test_it(self):
result = self._callFUT(['pshell'])
self.assertEqual(result, 2)
+
+
+class DummyImportlibMetadata:
+ def __init__(self, entry_points):
+ self._entry_points = entry_points
+
+ def entry_points(self):
+ return DummyEntryPoints(self._entry_points)
+
+
+class DummyEntryPoints:
+ def __init__(self, entry_points):
+ self._entry_points = entry_points
+
+ if sys.version_info >= (3, 10):
+
+ def select(self, **kw):
+ return iter(self._entry_points)
+
+ else: # pragma no cover
+
+ def get(self, key):
+ return list(self._entry_points)
+
+
+class DummyEntryPoint:
+ def __init__(self, name, value):
+ self.name = name
+ self.value = value
+
+ def load(self):
+ return self.value