Skip to content

Commit

Permalink
add test for mixin.capabilities.display
Browse files Browse the repository at this point in the history
  • Loading branch information
thijstriemstra committed Mar 5, 2017
1 parent e280037 commit b41591b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tests/test_mixin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2017 Richard Hull and contributors
# See LICENSE.rst for details.


import pytest

from luma.core.mixin import capabilities


def test_display_not_implemented():
cap = capabilities()
with pytest.raises(NotImplementedError):
cap.display('foo')

0 comments on commit b41591b

Please sign in to comment.