本文整理匯總了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())