Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from unittest import TestCase
import dryxPython.command_line as dcl
class test_get_help_for_python_module(TestCase):
def test_fail_for_no_argv(self):
result = dcl.py_get_help_for_python_module()
assert result == -1
class test_fits_print_fits_header:
def test_docopt(self):
result = dcl.fits_print_fits_header()
assert 1 == 1