mirror of
https://github.com/beetbox/beets.git
synced 2025-12-22 08:34:23 +01:00
41 lines
1.2 KiB
Python
41 lines
1.2 KiB
Python
# This file is part of beets.
|
|
# Copyright 2015, Bruno Cauet.
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining
|
|
# a copy of this software and associated documentation files (the
|
|
# "Software"), to deal in the Software without restriction, including
|
|
# without limitation the rights to use, copy, modify, merge, publish,
|
|
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
# permit persons to whom the Software is furnished to do so, subject to
|
|
# the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be
|
|
# included in all copies or substantial portions of the Software.
|
|
|
|
from __future__ import (division, absolute_import, print_function,
|
|
unicode_literals)
|
|
|
|
from test._common import unittest
|
|
from beetsplug import smartplaylist
|
|
from beets import config, ui
|
|
|
|
from test.helper import TestHelper
|
|
|
|
|
|
class SmartPlaylistTest(unittest.TestCase):
|
|
def test_build_queries(self):
|
|
pass
|
|
|
|
def test_db_changes(self):
|
|
pass
|
|
|
|
def test_playlist_update(self):
|
|
pass
|
|
|
|
|
|
class SmartPlaylistCLITest(unittest.TestCase, TestHelper):
|
|
def test_import(self):
|
|
pass
|
|
|
|
def test_splupdate(self):
|
|
pass
|