sqlite connection
(p: String)
| 18 | |
| 19 | /// sqlite connection |
| 20 | pub fn conn(p: String) -> SqliteConnection { |
| 21 | SqliteConnection::establish(&p).unwrap_or_else(|_| panic!("Error connecting to {:?}", p)) |
| 22 | } |
| 23 | |
| 24 | /// Condition submit or test |
| 25 | #[derive(Clone, Debug, Default)] |
no outgoing calls
no test coverage detected