To get under the 1000 line limit I did the following:
1) Moved exception classes to more specific files
2) Moved common definitions to common files
3) Moved ceph classes into more specific files
4) Moved unit tests to more specific files, following
the model of having the unit test live in the same
directory structure of the file it is testing
5) Moved some definitions into tests.utils
6) More, but all along these lines
There could probably be more breakdown of the tests into specific files, but I only did what was necessary to pass.
To get under the 1000 line limit I did the following:
1) Moved exception classes to more specific files 2) Moved common definitions to common files 3) Moved ceph classes into more specific files 4) Moved unit tests to more specific files, following the model of having the unit test live in the same directory structure of the file it is testing 5) Moved some definitions into tests.utils 6) More, but all along these lines
There could probably be more breakdown of the tests into specific files, but I only did what was necessary to pass.