Source code for expects.matchers.built_in.be_above

# -*- coding: utf-8 -*

from .. import Matcher


class be_above(Matcher):
    def __init__(self, expected):
        self._expected = expected

    def _match(self, subject):
        return subject > self._expected, []


[docs] class above(be_above): pass