use schist_models::{account::Account, date_utc::DateUtc}; 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: DateUtc::now(), } }