mirror of
https://github.com/beetbox/beets.git
synced 2025-12-24 01:25:47 +01:00
Merge pull request #1627 from pkess/addLoggingTest
added test for logging
This commit is contained in:
commit
f98dc8a432
1 changed files with 3 additions and 0 deletions
|
|
@ -31,6 +31,9 @@ class LoggingTest(TestCase):
|
|||
l5 = l3.getChild("shalala")
|
||||
self.assertEqual(l5.__class__, blog.BeetsLogger)
|
||||
|
||||
l6 = log.getLogger()
|
||||
self.assertNotEqual(l1, l6)
|
||||
|
||||
def test_str_format_logging(self):
|
||||
l = blog.getLogger("baz123")
|
||||
stream = StringIO()
|
||||
|
|
|
|||
Loading…
Reference in a new issue