blob: 7225b0841123b2146109f3312d31749ab08c0137 [file] [log] [blame]
# Copyright 2016 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 = [
PinchValidator("== 3.506 ~ 0.5"),
]
fuzzy.unexpected = [
MotionValidator("== 0 ~ 5"),
FlingStopValidator("< 10"),
]
return fuzzy.Check(gestures)