blob: ffd83eb29543f617311e63e91fc21fa7842e15f2 [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):
fuzzy = FuzzyCheck()
fuzzy.expected = [
ScrollValidator("== 3693.3 ~ 833.3"),
]
fuzzy.unexpected = [
MotionValidator("== 0 ~ 20"),
FlingValidator(),
FlingStopValidator("<10"),
]
return fuzzy.Check(gestures)