blob: 34cf4a6cdc48acd6b8a423b8a1c5e762a475a18e [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 *
# One finger moving with a second stationary finger should result in a move
# gesture only
def Validate(raw, events, gestures):
fuzzy = FuzzyCheck()
fuzzy.expected = [
MotionValidator(),
MotionValidator(),
MotionValidator(),
MotionValidator(),
]
fuzzy.unexpected = [
FlingStopValidator("<10"),
]
return fuzzy.Check(gestures)