
# Objective Correct spelling ## Solution Fix typos, specifically ones that I found in folders other than /crates ## Testing CI --------- Co-authored-by: Alice Cecile <alice.i.cecile@gmail.com>
11 lines
437 B
Rust
11 lines
437 B
Rust
fn main() -> compile_fail_utils::ui_test::Result<()> {
|
|
// Run all tests in the tests/example_tests folder.
|
|
// If we had more tests we could either call this function
|
|
// on every single one or use test_multiple and past it an array
|
|
// of paths.
|
|
//
|
|
// Don't forget that when running tests the working directory
|
|
// is set to the crate root.
|
|
compile_fail_utils::test("example_tests", "tests/example_tests")
|
|
}
|