blob: 8ad4f96850190898c458b97a7f5a8f8fce60166a [file] [log] [blame] [edit]
# Copyright (c) 2012 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 *
# originally generated gestures:
# FlingStop
# FlingStop
def Validate(raw, events, gestures):
fuzzy = FuzzyCheck()
fuzzy.expected = [
]
fuzzy.unexpected = [
MotionValidator("== 0 ~ 10"),
FlingStopValidator("<10"),
]
return fuzzy.Check(gestures)