Ejemplo n.º 1
0
 def test_unable_to_convert(self):
     assert to_bytes(object()) == bytes()
Ejemplo n.º 2
0
 def test_str(self):
     assert to_bytes("1") == b'1'
Ejemplo n.º 3
0
 def test_nparr(self):
     arr = np.array([1])
     assert to_bytes(arr) == arr.tobytes()
Ejemplo n.º 4
0
 def test_bytes(self):
     inp = b'1010'
     assert to_bytes(inp) == inp
Ejemplo 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
Ejemplo n.º 6
0
 def test_mpl_figure(self):
     p = plt.plot([0, 1], [0, 1])[0]
     assert len(to_bytes(p, self.fn)) > 0