Prepare for publishing

This commit is contained in:
Diggory Blake 2018-09-18 11:43:20 +01:00
parent 37a4b43a29
commit 61230f5ef7
2 changed files with 3 additions and 10 deletions

View file

@ -19,13 +19,3 @@ pub trait Factory {
pub trait ProvideWith<T>: Provide<T> + Sized {
fn provide_with<E, F: FnOnce(T) -> Result<T, E>>(&self, f: F) -> Result<Self, E>;
}
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}