blob: dfcdb926d388e7b1a94eb4e2b98251d16966f266 [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 __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from fuzzy_check import FuzzyCheck
from validators import *
def Validate(raw, events, gestures):
fuzzy = FuzzyCheck()
fuzzy.expected = [
ButtonDownValidator(4),
ButtonUpValidator(4),
]
fuzzy.unexpected = [
MotionValidator("<100"),
FlingStopValidator("<10"),
]
return fuzzy.Check(gestures)