blob: aec469a99ae0f18159bf005e9a68623290bf6563 [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
# ButtonDown(1)
# FlingStop
# ButtonUp(1)
def Validate(raw, events, gestures):
fuzzy = FuzzyCheck()
# We don't care about motion in this test. We just want a single left click.
fuzzy.expected = [
ButtonDownValidator(1),
ButtonUpValidator(1),
]
fuzzy.unexpected = [
MotionValidator(merge=True),
FlingStopValidator("<10"),
]
return fuzzy.Check(gestures)