blob: 796a90ad91859f2fb27ba7f6a37ea51cb41725e7 [file] [log] [blame]
[email protected]54caefd2012-02-15 06:18:561#!/usr/bin/env python
dbeama7b291292015-07-20 21:53:482# Copyright 2015 The Chromium Authors. All rights reserved.
[email protected]54caefd2012-02-15 06:18:563# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
dbeama7b291292015-07-20 21:53:486"""Unit test runner for Web Development Style Guide checks."""
[email protected]54caefd2012-02-15 06:18:567
dbeam7188edb2016-12-22 03:27:228from web_dev_style import css_checker_test, \
dbeama7b291292015-07-20 21:53:489 html_checker_test, \
10 js_checker_test, \
11 resource_checker_test
[email protected]54caefd2012-02-15 06:18:5612
dbeama7b291292015-07-20 21:53:4813_TEST_MODULES = [
dbeama7b291292015-07-20 21:53:4814 css_checker_test,
15 html_checker_test,
16 js_checker_test,
17 resource_checker_test
18]
[email protected]54caefd2012-02-15 06:18:5619
dbeama7b291292015-07-20 21:53:4820for test_module in _TEST_MODULES:
21 test_module.unittest.main(test_module)