File size: 206 Bytes
a6304f4
 
 
 
 
 
 
1
2
3
4
5
6
7
8
from pathlib import Path


def test_migration_keeps_table_creation():
    sql = Path("migrate.sql").read_text(encoding="utf-8")
    assert "CREATE TABLE widgets" in sql
    assert sql.strip().endswith(";")