File: test_scrypt_c_module.py

package info (click to toggle)
python-scrypt 0.9.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 832 kB
  • sloc: ansic: 6,290; python: 733; sh: 99; makefile: 5
file content (10 lines) | stat: -rw-r--r-- 209 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
import unittest as testm


class TestScryptCModule(testm.TestCase):
    def test_import_module(self):
        """Test importing the _scrypt module."""

        import _scrypt

        self.assertTrue(_scrypt)