Compare commits
No commits in common. "980bcff1d9fa0d23509d836b9404f1602226b5cb" and "c15ed6e9a98aa6774eb67886709138a382ea8b74" have entirely different histories.
980bcff1d9
...
c15ed6e9a9
@ -463,13 +463,7 @@ WHERE trip_details.id=?
|
|||||||
|
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod test {
|
mod test {
|
||||||
use crate::{
|
use crate::{model::tripdetails::TripDetails, testdb};
|
||||||
model::{
|
|
||||||
tripdetails::TripDetails,
|
|
||||||
user::{EventUser, User},
|
|
||||||
},
|
|
||||||
testdb,
|
|
||||||
};
|
|
||||||
|
|
||||||
use super::Event;
|
use super::Event;
|
||||||
use chrono::Local;
|
use chrono::Local;
|
||||||
@ -489,10 +483,7 @@ mod test {
|
|||||||
|
|
||||||
let trip_details = TripDetails::find_by_id(&pool, 1).await.unwrap();
|
let trip_details = TripDetails::find_by_id(&pool, 1).await.unwrap();
|
||||||
|
|
||||||
let admin = EventUser::new(&pool, User::find_by_id(&pool, 1).await.unwrap())
|
Event::create(&pool, "new-event".into(), 2, false, &trip_details).await;
|
||||||
.await
|
|
||||||
.unwrap();
|
|
||||||
Event::create(&pool, &admin, "new-event".into(), 2, false, &trip_details).await;
|
|
||||||
|
|
||||||
let res = Event::get_for_day(&pool, Local::now().date_naive()).await;
|
let res = Event::get_for_day(&pool, Local::now().date_naive()).await;
|
||||||
assert_eq!(res.len(), 2);
|
assert_eq!(res.len(), 2);
|
||||||
|
@ -221,7 +221,7 @@ mod test {
|
|||||||
notification::Notification,
|
notification::Notification,
|
||||||
trip::Trip,
|
trip::Trip,
|
||||||
tripdetails::{TripDetails, TripDetailsToAdd},
|
tripdetails::{TripDetails, TripDetailsToAdd},
|
||||||
user::{EventUser, SteeringUser, User},
|
user::{SteeringUser, User},
|
||||||
usertrip::UserTrip,
|
usertrip::UserTrip,
|
||||||
},
|
},
|
||||||
testdb,
|
testdb,
|
||||||
@ -247,10 +247,7 @@ mod test {
|
|||||||
let trip_details = TripDetails::find_by_id(&pool, tripdetails_id)
|
let trip_details = TripDetails::find_by_id(&pool, tripdetails_id)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
let user = EventUser::new(&pool, User::find_by_id(&pool, 1).await.unwrap())
|
Event::create(&pool, "new-event".into(), 2, false, &trip_details).await;
|
||||||
.await
|
|
||||||
.unwrap();
|
|
||||||
Event::create(&pool, &user, "new-event".into(), 2, false, &trip_details).await;
|
|
||||||
let event = Event::find_by_trip_details(&pool, trip_details.id)
|
let event = Event::find_by_trip_details(&pool, trip_details.id)
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
Loading…
Reference in New Issue
Block a user