Do I need to register dependencies for ALL my NancyModules when testing just one route, or is there a way to JUST register dependencies that apply to the module I want to work with?
I'm using the stuff in Nancy.Testing like the Browser class and the ConfigurableBootsrapper for my tests. But for the actual web project, I'm using the StructureMapNancyBootstrapper and register my dependencies via a StructureMap Registry sub-class.
I'm accustomed to unit testing to build out web interfaces where my test only touches one actual layer/class. This style of testing is more like integration testing where my tests are influenced by the entire stack. What I'm looking for is a way to get a little closer to unit testing.