e04e411852
Adds a few tests that validate the various scenarios of precendence, overrides, and defaults to ensure the correct 'style_edition' value is selected even when other options like 'edition' and/or 'version' are included.
15 lines
336 B
Rust
15 lines
336 B
Rust
// rustfmt-edition: 2024
|
|
|
|
fn build_sorted_static_get_entry_names(
|
|
mut entries: Vec<(u8, &'static str)>,
|
|
) -> (
|
|
impl Fn(
|
|
AlphabeticalTraversal,
|
|
Box<dyn dirents_sink::Sink<AlphabeticalTraversal>>,
|
|
) -> BoxFuture<'static, Result<Box<dyn dirents_sink::Sealed>, Status>>
|
|
+ Send
|
|
+ Sync
|
|
+ 'static
|
|
) {
|
|
}
|