My situations:
- In my
.cabal, I have alibrary, atest-suite, and anexecutable. In the library, there areother-modulesandexposed-modules, both that I need to test using the test suite. - When I ran
cabal test, I can't test those inother-modulesbecause it is not exposed.
Is there a way to expose these modules only for test-suite and no one else?