diff stubs/scales/scales_test.pyi @ 1863:0f0ff27e55a3

stubs, mostly autogen or empty Ignore-this: bc70818d2bc92bf022c65c3572b9775e
author Drew Perttula <drewp@bigasterisk.com>
date Sat, 25 May 2019 12:01:26 +0000
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/stubs/scales/scales_test.pyi	Sat May 25 12:01:26 2019 +0000
@@ -0,0 +1,55 @@
+# Stubs for scales.scales_test (Python 3)
+#
+# NOTE: This dynamically typed stub was automatically generated by stubgen.
+
+import unittest
+from typing import Any
+
+class Root1:
+    stateStat: Any = ...
+    errorsStat: Any = ...
+    activeUrlsStat: Any = ...
+    def __init__(self) -> None: ...
+    def getChild(self, cls: Any, *args: Any): ...
+
+class Root2:
+    def __init__(self) -> None: ...
+    def getChild(self, cls: Any): ...
+
+class AggregatingRoot:
+    countStat: Any = ...
+    stateStat: Any = ...
+    errorsStat: Any = ...
+    def __init__(self) -> None: ...
+    def getChild(self, cls: Any, *args: Any): ...
+
+class AggregatingRootSubclass(AggregatingRoot): ...
+
+class TypedChild:
+    countStat: Any = ...
+    def __init__(self) -> None: ...
+
+class Child:
+    countStat: Any = ...
+    stateStat: Any = ...
+    errorsStat: Any = ...
+    def __init__(self, name: str = ...) -> None: ...
+
+class DynamicRoot:
+    value: int = ...
+    dynamicStat: Any = ...
+    def __init__(self) -> None: ...
+
+class StatsTest(unittest.TestCase):
+    def setUp(self) -> None: ...
+    def testChildTypeStats(self) -> None: ...
+    def testChildStats(self) -> None: ...
+    def testMultilevelChild(self) -> None: ...
+    def testStatSum(self) -> None: ...
+    def testStatSumWithSubclassRoot(self) -> None: ...
+    def helpTestStatSum(self, a: Any) -> None: ...
+    def testStatHistogram(self) -> None: ...
+    def testIntDictStats(self) -> None: ...
+    def testIntDictStatsAggregation(self) -> None: ...
+    def testDynamic(self) -> None: ...
+    def testCollection(self) -> None: ...