def test_get_activity_target(self):
        """ Activity.set_target should return a set target """
        activity = fixture_add_activity(self.obj, actor=self.user)
        activity.set_target(self.target)

        # check we can get the target
        assert activity.get_target is not None
        assert activity.get_target.id == self.target.id
    def test_get_activity_object(self):
        """ Activity.get_object should return a set object """
        activity = fixture_add_activity(self.obj, actor=self.user)

        print("self.obj.activity = {0}".format(self.obj.activity))

        # check we now can get the object
        assert activity.get_object is not None
        assert activity.get_object.id == self.obj.id
    def test_set_activity_object(self):
        """ Activity.set_object should produce ActivityIntermediator """
        # The fixture will set self.obj as the object on the activity.
        activity = fixture_add_activity(self.obj, actor=self.user)

        # Assert the media has been associated with an AI
        assert self.obj.activity is not None

        # Assert the AI on the media and object are the same
        assert activity.object == self.obj.activity
    def test_activity_set_target(self):
        """ Activity.set_target should produce ActivityIntermediator """
        # This should set everything needed on the target
        activity = fixture_add_activity(self.obj, actor=self.user)
        activity.set_target(self.target)

        # Assert the media has been associated with the AI
        assert self.target.activity is not None

        # assert the AI on the media and target are the same
        assert activity.target == self.target.activity