File: main.rs

package info (click to toggle)
rust-test-casing 0.1.3-4
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 300 kB
  • sloc: makefile: 2
file content (9 lines) | stat: -rw-r--r-- 373 bytes parent folder | download
1
2
3
4
5
6
7
8
9
//! Integration tests for crate functionality.

#![cfg_attr(feature = "nightly", feature(test, custom_test_frameworks))]
// Enable additional lints to ensure that the code produced by the macro doesn't raise warnings.
#![warn(missing_debug_implementations, missing_docs, bare_trait_objects)]
#![warn(clippy::all, clippy::pedantic)]

mod decorate;
mod test_casing;