1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| | #! /usr/bin/python3
# SPDX-License-Identifier: GPL-2.0-or-later
#
# Copyright Red Hat
# Author: David Gibson <david@gibson.dropbear.id.au>
"""Test A Simple Socket Transport
meta/ - Test pieces of the test infrastructure.
Usually, tests for the test infrastructure should go next to the
implementation of the thing being tested. Sometimes that's
inconvenient or impossible (usually because it would cause a circular
module dependency). In that case those tests can go here.
"""
|