1 # SPDX-License-Identifier: GPL-2.0-only
3 # Copyright (C) 2020 EfficiOS, Inc.
10 class Test(unittest
.TestCase
):
11 # Test that the component returns an error if the graph is configured while
12 # the component's input port is left disconnected.
13 def test_unconnected_port_raises(self
):
16 bt2
.find_plugin("text").sink_component_classes
["pretty"], "snk"
19 with self
.assertRaisesRegex(
20 bt2
._Error
, 'Single input port is not connected: port-name="in"'
25 if __name__
== "__main__":
This page took 0.029688 seconds and 4 git commands to generate.