We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e220d9 commit e8ff733Copy full SHA for e8ff733
tests/test_methods.py
@@ -326,6 +326,17 @@ def test_unknown_method(self) -> None:
326
kind=kind,
327
)
328
329
+ with pytest.raises(UnknownMethodError):
330
+ CMethods().pool_adjust(
331
+ params=dict(
332
+ method="distribution_mapping",
333
+ obs=self.data[kind]["obsh"],
334
+ simh=self.data[kind]["simh"],
335
+ simp=self.data[kind]["simp"],
336
+ kind=kind,
337
+ )
338
339
+
340
def test_not_implemented_methods(self) -> None:
341
kind = "+"
342
with pytest.raises(ValueError):
0 commit comments