alembic-cli 0.3.0

Command line interface for Alembic.
1
2
3
4
5
6
7
8
9
10
11
12
13
mod support;

use support::run_cast;

#[test]
fn cast_django_e2e_minimal() {
    run_cast("minimal.yaml");
}

#[test]
fn cast_django_e2e_relations() {
    run_cast("relations.yaml");
}