This commit is contained in:
@@ -75,6 +75,11 @@ impl MovieRepository for RepoWithExternalMovie {
|
||||
{
|
||||
panic!("unexpected")
|
||||
}
|
||||
async fn list_movies_with_external_id(
|
||||
&self,
|
||||
) -> Result<Vec<domain::models::Movie>, DomainError> {
|
||||
Ok(vec![])
|
||||
}
|
||||
}
|
||||
|
||||
#[async_trait::async_trait]
|
||||
@@ -121,6 +126,11 @@ impl MovieRepository for RepoEmpty {
|
||||
{
|
||||
panic!("unexpected")
|
||||
}
|
||||
async fn list_movies_with_external_id(
|
||||
&self,
|
||||
) -> Result<Vec<domain::models::Movie>, DomainError> {
|
||||
Ok(vec![])
|
||||
}
|
||||
}
|
||||
|
||||
#[async_trait::async_trait]
|
||||
@@ -167,6 +177,11 @@ impl MovieRepository for RepoWithTitleMatch {
|
||||
{
|
||||
panic!("unexpected")
|
||||
}
|
||||
async fn list_movies_with_external_id(
|
||||
&self,
|
||||
) -> Result<Vec<domain::models::Movie>, DomainError> {
|
||||
Ok(vec![])
|
||||
}
|
||||
}
|
||||
|
||||
struct MetaReturnsMovie(Movie);
|
||||
|
||||
Reference in New Issue
Block a user