11 lines
219 B
Python
Executable File
11 lines
219 B
Python
Executable File
"""A dummy test."""
|
|
|
|
import argparse
|
|
|
|
from workflow_glue import report
|
|
|
|
|
|
def test():
|
|
"""Just showing that we can import using the workflow-glue."""
|
|
assert isinstance(report.argparser(), argparse.ArgumentParser)
|