plot_utils: add a generic plot_temperatures that can combine data from the framework and the governor
diff --git a/tests/test_plot_utils.py b/tests/test_plot_utils.py
index 21d350c..dc60e14 100644
--- a/tests/test_plot_utils.py
+++ b/tests/test_plot_utils.py
@@ -94,6 +94,14 @@
 
         plot_utils.plot_allfreqs(inp, outp, map_label)
 
+    def test_plot_temperature(self):
+        """Test that plot_utils.plot_temperature() doesn't bomb"""
+
+        thrm = cr2.Thermal()
+        gov = cr2.ThermalGovernor()
+
+        plot_utils.plot_temperature(thrm, gov, title="Foo")
+
     def test_plot_power_hists(self):
         """Test that plot_power_hists() doesn't bomb"""