tear_down

Attribute Macro tear_down 

Source
#[tear_down]
Expand description

Registers a function to be run after each test in the current module

Example:

use fluent_test::prelude::*;

#[tear_down]
fn tear_down() {
    // Clean up test environment
}