0

このデコレータのように、プロパティクラスプロパティをスタブ化できるモッキングまたはスタブ化フレームワークを知っている人はいますか?

class classproperty:
    """
    Decorator to  read-only static properties
    """
    def __init__(self, getter):
        self.getter = getter
    def __get__(self, instance, owner):
        return self.getter(owner)

class Foo:
    _name = "Name"
    @classproperty
    def foo(cls):
        return cls._name

私は現在mockitoを使用していますが、これはプロパティのスタブを許可していません。

4

1 に答える 1