]> www.wagner.pp.ru Git - oss/ctypescrypto.git/blobdiff - tests/testrand.py
Converted tabs to spaces to make pylint happy
[oss/ctypescrypto.git] / tests / testrand.py
index ec861ba201cc3963745a83fe755db7a48c5a00cc..853a4916f973716d2dbb85d8583b0e90dfc0e034 100644 (file)
@@ -2,27 +2,27 @@ from ctypescrypto.rand import *
 import unittest
 
 class TestRand(unittest.TestCase):
-       def test_bytes(self):
-               b=bytes(100)
-               self.assertEqual(len(b),100)
-               b2=bytes(100)
-               self.assertNotEqual(b,b2)
-       def test_pseudo_bytes(self):
-               b=pseudo_bytes(100)
-               self.assertEqual(len(b),100)
-               b2=pseudo_bytes(100)
-               self.assertNotEqual(b,b2)
-       def test_seed(self):
-               b="aaqwrwfsagdsgdsfgdsfgdfsgdsfgdsgfdsfgdsfg"
-               seed(b)
-               # Check if no segfault here
-       def test_entropy(self):
-               b="aaqwrwfsagdsgdsfgdsfgdfsgdsfgdsgfdsfgdsfg"
-               seed(b,2.25)
-               # Check if no segfault here
-       def test_Status(self):
-               i=status()
-               self.assertEqual(i,1)
+    def test_bytes(self):
+        b=bytes(100)
+        self.assertEqual(len(b),100)
+        b2=bytes(100)
+        self.assertNotEqual(b,b2)
+    def test_pseudo_bytes(self):
+        b=pseudo_bytes(100)
+        self.assertEqual(len(b),100)
+        b2=pseudo_bytes(100)
+        self.assertNotEqual(b,b2)
+    def test_seed(self):
+        b="aaqwrwfsagdsgdsfgdsfgdfsgdsfgdsgfdsfgdsfg"
+        seed(b)
+        # Check if no segfault here
+    def test_entropy(self):
+        b="aaqwrwfsagdsgdsfgdsfgdfsgdsfgdsgfdsfgdsfg"
+        seed(b,2.25)
+        # Check if no segfault here
+    def test_Status(self):
+        i=status()
+        self.assertEqual(i,1)
 
 if __name__ == '__main__':
-       unittest.main()
+    unittest.main()