From 54894f9de9bad4fecb2a116d59a03cdd003f84c0 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Thu, 12 Dec 2024 08:28:04 +0000 Subject: Moves rust workspace to root --- actualbudget_queries/tests/common/payee_names.rs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 actualbudget_queries/tests/common/payee_names.rs (limited to 'actualbudget_queries/tests/common/payee_names.rs') diff --git a/actualbudget_queries/tests/common/payee_names.rs b/actualbudget_queries/tests/common/payee_names.rs new file mode 100644 index 0000000..42b6024 --- /dev/null +++ b/actualbudget_queries/tests/common/payee_names.rs @@ -0,0 +1,17 @@ +pub const PAYEE_NAMES: &[&'static str] = &[ + "Starting Balance", + "Employer Ltd", + "Tesco", +]; + +pub struct PayeeNamesDict { + pub starting_balances: &'static str, + pub employer: &'static str, + pub tesco: &'static str, +} + +pub const PAYEE_NAMES_DICT: PayeeNamesDict = PayeeNamesDict { + starting_balances: PAYEE_NAMES[0], + employer: PAYEE_NAMES[1], + tesco: PAYEE_NAMES[2], +}; -- cgit v1.2.3