1#!/usr/bin/env python3
2
3"""Test general SID module functionality.
4
5This is a pretty weak test because it has to be generic across projects so we can't
6look for any specific sources, but we can do a bit of validation and check the basic functions
7don't crash.
8
9Use of the `project` fixture means this module is disabled if the test suite of being run for the
10pure CHART-core without project.
11"""
12
13# import imp
14
15# def test_sids(project):
16 # write me properly
17 # sid_class = imp.load_module(settings.SID)
18 # sids = SID.all()
19 # pass
20 # TBD not sure if this module is worth having at all