use schist_models::{account::Account, datetime_utc::DatetimeUtc}; use schist_traits::nowlike::Nowlike; pub fn make_fake_account(id: i32) -> Account { Account { id, name: String::from("Joe Bloggs"), opening_balance: 0, opening_date: DatetimeUtc::now(), } }