Commit 11672545 authored by Stephen Martinis's avatar Stephen Martinis Committed by Commit Bot

Generate buildbot json tests: Split mixin tests

This CL moves tests for the mixins feature into its own suite. It also
moves the test data inputs for those tests near this.

Change-Id: Id0e2c97ee59497e239231cc53e300d2f1f655b5c
Reviewed-on: https://chromium-review.googlesource.com/c/1303046Reviewed-by: default avatarKenneth Russell <kbr@chromium.org>
Commit-Queue: Stephen Martinis <martiniss@chromium.org>
Cr-Commit-Position: refs/heads/master@{#603568}
parent 50ed7cec
......@@ -19,8 +19,8 @@ def main():
cov = coverage.coverage(include='*generate_buildbot_json.py')
cov.start()
import generate_buildbot_json_unittest
suite = unittest.TestLoader().loadTestsFromTestCase(
generate_buildbot_json_unittest.UnitTest)
suite = unittest.TestLoader().loadTestsFromModule(
generate_buildbot_json_unittest)
unittest.TextTestRunner(stream=FakeStream()).run(suite)
cov.stop()
outf = cStringIO.StringIO()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment