Skip to content

Commit ed04430

Browse files
authored
Add a dummy test to satisfy nextest. (#34)
Keeps the CI functioning with test running assurances.
1 parent 3e17dd0 commit ed04430

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/lib.rs

+8
Original file line numberDiff line numberDiff line change
@@ -104,3 +104,11 @@ impl Default for Transform {
104104
Self::Fixed(Affine::IDENTITY)
105105
}
106106
}
107+
108+
#[cfg(test)]
109+
mod tests {
110+
// CI will fail unless cargo nextest can execute at least one test per workspace.
111+
// Delete this dummy test once we have an actual real test.
112+
#[test]
113+
fn dummy_test_until_we_have_a_real_test() {}
114+
}

0 commit comments

Comments
 (0)