blob: 41d584f695b91255e9c67142084363c9d46f5c01 [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 *
# No motion event should be generated
def Validate(raw, events, gestures):
fuzzy = FuzzyCheck()
fuzzy.expected = [
PinchValidator(),
]
fuzzy.unexpected = [
FlingStopValidator("<10"),
]
return fuzzy.Check(gestures)