summaryrefslogtreecommitdiff
path: root/actualbudget_queries/tests/common/category_names.rs
diff options
context:
space:
mode:
Diffstat (limited to 'actualbudget_queries/tests/common/category_names.rs')
-rw-r--r--actualbudget_queries/tests/common/category_names.rs29
1 files changed, 0 insertions, 29 deletions
diff --git a/actualbudget_queries/tests/common/category_names.rs b/actualbudget_queries/tests/common/category_names.rs
deleted file mode 100644
index a2f7d84..0000000
--- a/actualbudget_queries/tests/common/category_names.rs
+++ /dev/null
@@ -1,29 +0,0 @@
-pub const CATEGORY_NAMES: &[&'static str] = &[
- "Food",
- "General",
- "Bills",
- "Bills (Flexible)",
- "Savings",
- "Starting Balances",
- "Income",
-];
-
-pub struct CategoryNamesDict {
- pub food: &'static str,
- pub general: &'static str,
- pub bills: &'static str,
- pub bills_flexible: &'static str,
- pub savings: &'static str,
- pub starting_balances: &'static str,
- pub income: &'static str,
-}
-
-pub const CATEGORY_NAMES_DICT: CategoryNamesDict = CategoryNamesDict {
- food: CATEGORY_NAMES[0],
- general: CATEGORY_NAMES[1],
- bills: CATEGORY_NAMES[2],
- bills_flexible: CATEGORY_NAMES[3],
- savings: CATEGORY_NAMES[4],
- starting_balances: CATEGORY_NAMES[5],
- income: CATEGORY_NAMES[6],
-};