Esempio n. 1
0
 def test_unable_to_convert(self):
     assert to_bytes(object()) == bytes()
Esempio n. 2
0
 def test_str(self):
     assert to_bytes("1") == b'1'
Esempio n. 3
0
 def test_nparr(self):
     arr = np.array([1])
     assert to_bytes(arr) == arr.tobytes()
Esempio n. 4
0
 def test_bytes(self):
     inp = b'1010'
     assert to_bytes(inp) == inp
Esempio n. 5
0
 def test_mpl_canvas(self):
     p = plt.plot([0, 1], [0, 1])[0]
     assert len(to_bytes(p.figure.canvas, self.fn)) > 0
Esempio n. 6
0
 def test_mpl_figure(self):
     p = plt.plot([0, 1], [0, 1])[0]
     assert len(to_bytes(p, self.fn)) > 0