kanidmd_lib/migration_data/
mod.rs
1pub(crate) mod dl10;
2pub(crate) mod dl8;
3pub(crate) mod dl9;
4
5mod types;
6
7#[cfg(test)]
8pub(crate) use dl10::accounts::BUILTIN_ACCOUNT_ANONYMOUS_DL6 as BUILTIN_ACCOUNT_ANONYMOUS;
9
10#[cfg(test)]
11use self::types::BuiltinAccount;
12
13#[cfg(test)]
14lazy_static! {
15 pub static ref BUILTIN_ACCOUNT_TEST_PERSON: BuiltinAccount = BuiltinAccount {
17 account_type: kanidm_proto::v1::AccountType::Person,
18 entry_managed_by: None,
19 name: "test_person",
20 uuid: crate::constants::uuids::UUID_TESTPERSON_1,
21 description: "Test Person",
22 displayname: "Test Person",
23 };
24}