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