From a5f31dfe2ddc3dadcc4e8c48df9c4c84314d11ad Mon Sep 17 00:00:00 2001 From: Alexander Aivazidis Date: Fri, 23 Aug 2024 20:05:51 +0000 Subject: [PATCH] feat(tests): Added test for synthetic_AnnData function. Signed-off-by: Alexander Aivazidis --- src/pyrovelocity/tests/test_synthetic_AnnData.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/pyrovelocity/tests/test_synthetic_AnnData.py diff --git a/src/pyrovelocity/tests/test_synthetic_AnnData.py b/src/pyrovelocity/tests/test_synthetic_AnnData.py new file mode 100644 index 000000000..ae0f838db --- /dev/null +++ b/src/pyrovelocity/tests/test_synthetic_AnnData.py @@ -0,0 +1,5 @@ +"""Test synthetic_AnnData function.""" + +def test_synthetic_AnnData(): + from pyrovelocity.tests.synthetic_AnnData import synthetic_AnnData + synthetic_AnnData() \ No newline at end of file