blob: e915aed8f3abbfad021da3fe3ca2d61b68b24a50 (
plain)
1
2
3
4
5
6
7
8
9
10
|
use budgeting_app_core::models::{account::Account, date_time_utc::DateTimeUtc};
pub fn make_fake_account(id: i32) -> Account {
Account {
id,
name: String::from("Joe Bloggs"),
opening_balance: 0,
opening_date: DateTimeUtc::now(),
}
}
|