File: test_doubleplotwidget.py

package info (click to toggle)
pyacidobasic 3.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,388 kB
  • sloc: python: 1,569; xml: 71; makefile: 60; sh: 7
file content (8 lines) | stat: -rw-r--r-- 190 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
from unittest import TestCase
import numpy as np

class MonTest(TestCase):

    def test_arange(self):
        self.assertTrue(np.array_equal(
            np.arange(6), np.array(range(6))))