Coverage for tests/testModules/dummyModule.py : 100%

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"""
2This is a dummy module that creates global caches so that we can test
3the behavior of sims_clean_up()
4"""
5from lsst.sims.utils.CodeUtilities import sims_clean_up
7__all__ = ["a_dict_cache", "a_list_cache"]
9a_dict_cache = {}
11a_list_cache = []
13sims_clean_up.targets.append(a_dict_cache)
14sims_clean_up.targets.append(a_list_cache)