Setup framework to do integration testing (#50)

This commit is contained in:
Azrenbeth
2021-09-06 09:52:13 +01:00
committed by GitHub
parent 011f9f8da5
commit 0f7f2c2660
12 changed files with 316 additions and 6 deletions

View File

@@ -44,9 +44,9 @@ use database::PGEscape;
/// delta from that previous group (or the full state if no previous group)
#[derive(Default, Debug, Clone, PartialEq, Eq)]
pub struct StateGroupEntry {
in_range: bool,
prev_state_group: Option<i64>,
state_map: StateMap<Atom>,
pub in_range: bool,
pub prev_state_group: Option<i64>,
pub state_map: StateMap<Atom>,
}
/// Helper struct for parsing the `level_sizes` argument.