summaryrefslogtreecommitdiff
path: root/actualbudget_queries/tests/common/payee_names.rs
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2024-12-12 08:28:04 +0000
committerJoe Carstairs <me@joeac.net>2024-12-12 08:28:04 +0000
commit54894f9de9bad4fecb2a116d59a03cdd003f84c0 (patch)
tree6ce5517cecf23d4e93d7a381a374e1fa6c810cee /actualbudget_queries/tests/common/payee_names.rs
parent8a30bcbdf9264d235bf93da3df8e170cfde53d02 (diff)
Moves rust workspace to root
Diffstat (limited to 'actualbudget_queries/tests/common/payee_names.rs')
-rw-r--r--actualbudget_queries/tests/common/payee_names.rs17
1 files changed, 17 insertions, 0 deletions
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],
+};