Registry testing - part 13

This commit is contained in:
Maurus Decimus
2026-03-23 18:52:36 +01:00
parent 944505a925
commit 3a7dd3ca5d
42 changed files with 1524 additions and 1233 deletions

View File

@@ -74,7 +74,7 @@ impl IfBlock {
}
impl Expression {
fn parse(token_map: &TokenMap, expr: &str) -> Self {
pub fn parse(token_map: &TokenMap, expr: &str) -> Self {
ExpressionParser::new(Tokenizer::new(expr, token_map))
.parse()
.unwrap()

View File

@@ -36,6 +36,11 @@ impl LookupStores {
.await
.map(InMemoryStore::Store)
}
#[cfg(feature = "sqlite")]
LookupStore::Sqlite(sqlite_store) => {
crate::backend::sqlite::SqliteStore::open(sqlite_store)
.map(InMemoryStore::Store)
}
// SPDX-SnippetBegin
// SPDX-FileCopyrightText: 2020 Stalwart Labs LLC <hello@stalw.art>
// SPDX-License-Identifier: LicenseRef-SEL