blob: 1291e684139609e5958b5d6e0fc8345d81c4d86a [file] [log] [blame]
# Copyright (c) 2013 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(ScrollValidator()),
]
fuzzy.unexpected = [
]
return fuzzy.Check(gestures)