1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
from spec import Spec, skip, eq_
from invoke.context import Context
from invoke.config import Config
class Context_(Spec):
class init:
"__init__"
def takes_optional_config_arg(self):
# Meh-tastic doesn't-barf tests. MEH.
Context()
Context(config={'foo': 'bar'})
class configuration_proxy:
"Dict-like proxy for self.config"
def setup(self):
config = Config({'foo': 'bar'})
self.c = Context(config=config)
def direct_access_allowed(self):
eq_(self.c.config.__class__, Config)
eq_(self.c.config['foo'], 'bar')
eq_(self.c.config.foo, 'bar')
def getitem(self):
"___getitem__"
eq_(self.c['foo'], 'bar')
def getattr(self):
"__getattr__"
eq_(self.c.foo, 'bar')
def get(self):
eq_(self.c.get('foo'), 'bar')
eq_(self.c.get('biz', 'baz'), 'baz')
def keys(self):
skip()
def values(self):
skip()
def iter(self):
"__iter__"
skip()
def update(self):
self.c.update({'newkey': 'newval'})
eq_(self.c['newkey'], 'newval')
|