blob: 2f9d0f8e27a4724fac638e4d1afdea5ea3d23dd7 [file] [log] [blame]
# Copyright 2017 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from fuzzy_check import FuzzyCheck
from validators import *
# Two fingers moving with a third stationary finger should result in a scroll
# gesture with a fling gesture after
def Validate(raw, events, gestures):
fuzzy = FuzzyCheck()
fuzzy.expected = [
ScrollValidator(),
FlingValidator(),
ScrollValidator(),
FlingValidator(),
ScrollValidator(),
FlingValidator(),
ScrollValidator(),
FlingValidator(),
]
fuzzy.unexpected = [
FlingStopValidator("<10"),
]
return fuzzy.Check(gestures)