本文整理汇总了Python中pymongo.read_preferences.MovingAverage.clone_with方法的典型用法代码示例。如果您正苦于以下问题:Python MovingAverage.clone_with方法的具体用法?Python MovingAverage.clone_with怎么用?Python MovingAverage.clone_with使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pymongo.read_preferences.MovingAverage
的用法示例。
在下文中一共展示了MovingAverage.clone_with方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_moving_average
# 需要导入模块: from pymongo.read_preferences import MovingAverage [as 别名]
# 或者: from pymongo.read_preferences.MovingAverage import clone_with [as 别名]
def test_moving_average(self):
avg = MovingAverage([10])
self.assertEqual(10, avg.get())
avg2 = avg.clone_with(20)
self.assertEqual(15, avg2.get())
avg3 = avg2.clone_with(30)
self.assertEqual(20, avg3.get())
avg4 = avg3.clone_with(-100)
self.assertEqual((10 + 20 + 30 - 100) / 4., avg4.get())
avg5 = avg4.clone_with(17)
self.assertEqual((10 + 20 + 30 - 100 + 17) / 5., avg5.get())
avg6 = avg5.clone_with(43)
self.assertEqual((20 + 30 - 100 + 17 + 43) / 5., avg6.get())
avg7 = avg6.clone_with(-1111)
self.assertEqual((30 - 100 + 17 + 43 - 1111) / 5., avg7.get())