Assert Migrator Reversible (for Sea Orm)

[![crate](https://img.shields.io/crates/v/assert-migrator-reversible.svg)](https://crates.io/crates/assert-migrator-reversible) [![docs](https://docs.rs/assert-migrator-reversible/badge.svg)](https://docs.rs/assert-migrator-reversible)

A crate for testing Sea Orm Migrators. To check if when you call up and then down on them. They work in both directions.

It runs your migrations up and down one at a time. Taking a look at the differences it does to a database. Checking if the reverse returns a database into it's previous state.

Example

The most common use case is simply to test if your Migrator is reversible. In a test. Then error if it is not.

To do this add the following test to your migrations project ...

```rust

[cfg(test)]

mod testmigrator { use crate::path::to::my::Migrator; use ::assertmigratorreversible::assertmigrator_reversible;

#[test]
fn it_should_have_reversible_migrations() {
    assert_migrator_reversible(Migrator);
}

} ```

Caveats