summaryrefslogtreecommitdiff
path: root/schist_core/schist_fakes/src/account.rs
blob: d08b91ae19b4e935c6c5337d153185ef1ef31b0d (plain)
1
2
3
4
5
6
7
8
9
10
11
use schist_models::{Account, DateUtc};
use schist_traits::Nowlike;

pub fn make_fake_account(id: i32) -> Account {
    Account {
        id,
        name: String::from("Joe Bloggs"),
        opening_balance: 0,
        opening_date: DateUtc::now(),
    }
}