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