All database URLs are commented out. The appropriate one should be uncommented when needed.
8 lines
159 B
Python
8 lines
159 B
Python
from model import Playlists, Session
|
|
|
|
|
|
def test_get_colour():
|
|
with Session() as session:
|
|
x = Playlists.get_all_playlists(session)
|
|
assert False
|