// Configuration for integration tests. This crate is about interacting with real serial ports and
// so some tests need actual hardware.
use Envconfig;
use fixture;
// Configuration for tests requiring acutual hardware.
//
// For conveniently pulling this configuration into a test case as a parameter, you might want to
// use the test fixture [`hw_config`].
// Test fixture for conveniently pulling the actual hardware configuration into test cases.
//
// See [`fixture`](rstest::fixture) for details.