blob: 6d8f57ea5c6179e78e32faf91cd0c3f8474bb2f8 [file] [log] [blame]
# 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 *
def Validate(raw, events, gestures):
"""
A fat (noisy) finger moving from left to right.
"""
fuzzy = FuzzyCheck()
fuzzy.expected = [
MotionValidator("== 543 ~ 200", merge=True),
]
fuzzy.unexpected = [
FlingStopValidator("<10"),
]
return fuzzy.Check(gestures)