aboutsummaryrefslogtreecommitdiff
path: root/mingling_picker/test/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'mingling_picker/test/src/lib.rs')
-rw-r--r--mingling_picker/test/src/lib.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/mingling_picker/test/src/lib.rs b/mingling_picker/test/src/lib.rs
new file mode 100644
index 0000000..9bc0560
--- /dev/null
+++ b/mingling_picker/test/src/lib.rs
@@ -0,0 +1,8 @@
+// Using `assert_eq!(x, true)` is clearer than `assert!(x)` for expressing expected values
+//
+// BECAUSE `assert!` only checks if the boolean value is true,
+// while `assert_eq!` explicitly shows the expected value
+#![allow(clippy::bool_assert_comparison)]
+
+#[cfg(test)]
+mod test;