plot_utils: add a function to plot temperature histograms
diff --git a/tests/test_plot_utils.py b/tests/test_plot_utils.py
index 274ad97..21d350c 100644
--- a/tests/test_plot_utils.py
+++ b/tests/test_plot_utils.py
@@ -102,3 +102,10 @@
map_label = {"0000000f": "A7", "000000f0": "A15"}
plot_utils.plot_power_hists(inp, outp, map_label)
+
+ def test_plot_temperature_hist(self):
+ """Test that plot_temperature_hist() doesn't bomb"""
+
+ therm = cr2.Thermal()
+
+ plot_utils.plot_temperature_hist(therm, "Foo")