Skip to content

Commit

Permalink
Merge pull request #13 from MrCurtis/rahman
Browse files Browse the repository at this point in the history
Rahman
  • Loading branch information
MrCurtis authored Sep 12, 2023
2 parents 99b4fed + bded8f3 commit 4542892
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions integration_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
from unittest import TestCase

from data_setup import setup_data

from graph import get_graph

from sqlalchemy import create_engine, text

from plot_graph import plot

engine = create_engine("sqlite+pysqlite:///:memory:", echo=True)

class DataSetupTests(TestCase):
def test_integration(self):
setup_data(engine)
graph = get_graph( engine, 'table_a', 1 )
plot(graph)

0 comments on commit 4542892

Please sign in to comment.