bt2c::Logger: remove unused cLevel() method
[babeltrace.git] / tests / plugins / sink.text.pretty / test_pretty.py
CommitLineData
440ffe59
SM
1# SPDX-License-Identifier: GPL-2.0-only
2#
3# Copyright (C) 2020 EfficiOS, Inc.
4
5import unittest
5995b304 6
440ffe59
SM
7import bt2
8
9
10class 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):
14 graph = bt2.Graph()
15 graph.add_component(
f5567ea8 16 bt2.find_plugin("text").sink_component_classes["pretty"], "snk"
440ffe59
SM
17 )
18
19 with self.assertRaisesRegex(
20 bt2._Error, 'Single input port is not connected: port-name="in"'
21 ):
22 graph.run()
23
24
f5567ea8 25if __name__ == "__main__":
440ffe59 26 unittest.main()
This page took 0.042677 seconds and 5 git commands to generate.