test_terminal_plot.py 304 B

1234567891011121314151617
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. from draugr.writers import terminal_plot
  4. __author__ = "Christian Heider Nielsen"
  5. import numpy
  6. def test_terminal_plot():
  7. terminal_plot(numpy.tile(range(9), 4), plot_character="o")
  8. assert True
  9. if __name__ == "__main__":
  10. test_terminal_plot()