Diff of /tests/data/test_airway.py [000000] .. [ea0fd6]

Switch to unified view

a b/tests/data/test_airway.py
1
import unittest
2
3
from inmoose.data.airway import airway
4
5
6
class Test(unittest.TestCase):
7
    def test_airway(self):
8
        """
9
        check that the airway dataset is properly loaded
10
        """
11
        adata = airway()
12
        self.assertEqual(adata.shape, (8, 64102))
13
        self.assertEqual(len(adata.obs.columns), 9)