| 50 | /// Defines a database transaction as it holds a Vec<[Statement]> |
| 51 | #[derive(Debug, Clone, PartialEq)] |
| 52 | pub struct Transaction { |
| 53 | stmts: Vec<Statement>, |
| 54 | } |
| 55 | |
| 56 | impl MockDatabase { |
| 57 | /// Instantiate a mock database with a [DbBackend] to simulate real |
no outgoing calls
no test coverage detected