We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9243d4 commit 3d6a24dCopy full SHA for 3d6a24d
python/tests/platform/test_shared_pipeline.py
@@ -741,6 +741,16 @@ def test_url_encoding_ingress_egress_table_name(self):
741
]
742
self.assertCountEqual(egress_result, expected_egress)
743
744
+ def test_listen_non_existent_view_paused(self):
745
+ self.pipeline.start_paused()
746
+ with self.assertRaises(ValueError):
747
+ self.pipeline.listen("FrodoBagginsInMordor")
748
+
749
+ def test_listen_non_existent_view_running(self):
750
+ self.pipeline.start()
751
752
753
754
755
if __name__ == "__main__":
756
unittest.main()
0 commit comments