blob: 7729f79c5e7c5516810444017db1d4730f8d0c65 [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 *
# originally generated gestures:
# FlingStop
def Validate(raw, events, gestures):
fuzzy = FuzzyCheck()
fuzzy.expected = [
FlingValidator("== 66273.3 ~ 8333.3"),
]
fuzzy.unexpected = [
ScrollValidator(""), # scroll optional
FlingStopValidator("<10"),
]
return fuzzy.Check(gestures)