blob: ce4f8c4abcb4f4c97a0e29ab3e8aab3ebfd63fb0 [file] [log] [blame]
# Copyright 2017 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 = [
AnythingButValidator(ButtonDownValidator(1), ButtonUpValidator(1)),
]
fuzzy.unexpected = [
]
return fuzzy.Check(gestures)