Ejemplo n.º 1
0
        def can_clone_into_a_subclass(self):
            orig = Call(self.task)

            class MyCall(Call):
                pass

            clone = orig.clone(into=MyCall)
            assert clone == orig
            assert isinstance(clone, MyCall)
Ejemplo n.º 2
0
        def can_be_given_extra_kwargs_to_clone_with(self):
            orig = Call(self.task)

            class MyCall(Call):
                def __init__(self, *args, **kwargs):
                    self.hooray = kwargs.pop("hooray")
                    super(MyCall, self).__init__(*args, **kwargs)

            clone = orig.clone(into=MyCall, with_={"hooray": "woo"})
            assert clone.hooray == "woo"
Ejemplo n.º 3
0
 def includes_args_and_kwargs(self):
     call = Call(
         self.task,
         args=("posarg1", "posarg2"),
         # Single-key dict to avoid dict ordering issues
         kwargs={"kwarg1": "val1"},
     )
     expected = "<Call 'mytask', args: ('posarg1', 'posarg2'), kwargs: {'kwarg1': 'val1'}>"  # noqa
     assert str(call) == expected
Ejemplo n.º 4
0
 def returns_new_but_equivalent_object(self):
     orig = Call(self.task)
     clone = orig.clone()
     assert clone is not orig
     assert clone == orig
Ejemplo n.º 5
0
 def creates_a_new_Context_from_given_config(self):
     conf = Config(defaults={"foo": "bar"})
     c = Call(_).make_context(conf)
     assert isinstance(c, Context)
     assert c.foo == "bar"
Ejemplo n.º 6
0
 def requires_config_argument(self):
     with raises(TypeError):
         Call(_).make_context()
Ejemplo n.º 7
0
 def skips_aka_if_explicit_name_same_as_task_name(self):
     call = Call(self.task, called_as="mytask")
     assert str(call) == "<Call 'mytask', args: (), kwargs: {}>"
Ejemplo n.º 8
0
 def includes_aka_if_explicit_name_given(self):
     call = Call(self.task, called_as="notmytask")
     expected = "<Call 'mytask' (called as: 'notmytask'), args: (), kwargs: {}>"  # noqa
     assert str(call) == expected
Ejemplo n.º 9
0
 def is_first_posarg(self):
     assert Call(_).task is _
Ejemplo n.º 10
0
 def may_be_given(self):
     assert Call(_, kwargs={"foo": "bar"}).kwargs == {"foo": "bar"}
Ejemplo n.º 11
0
 def defaults_to_empty_dict(self):
     assert Call(_).kwargs == dict()
Ejemplo n.º 12
0
 def may_be_given(self):
     assert Call(_, args=(1, 2, 3)).args == (1, 2, 3)
Ejemplo n.º 13
0
 def defaults_to_empty_tuple(self):
     assert Call(_).args == tuple()
Ejemplo n.º 14
0
 def may_be_given(self):
     assert Call(_, called_as="foo").called_as == "foo"
Ejemplo n.º 15
0
 def defaults_to_None(self):
     assert Call(_).called_as is None
Ejemplo n.º 16
0
 def includes_task_name(self):
     call = Call(self.task)
     assert str(call) == "<Call 'mytask', args: (), kwargs: {}>"
Ejemplo n.º 17
0
 def is_required(self):
     with raises(TypeError):
         Call()