test_sanity.py 328 B

123456789101112131415
  1. from draugr import terminal_plot
  2. import numpy as np
  3. def test_sanity():
  4. assert True
  5. assert False is not True
  6. answer_to_everything = str(42)
  7. assert str(42) == answer_to_everything
  8. def test_plot():
  9. terminal_plot(np.tile(range(9), 4), plot_character='o')
  10. assert True
  11. if __name__ == '__main__':
  12. test_plot()