from fibomat.backend.backendbase import BackendBase
[docs]class DoNothingBackend(BackendBase):
"""This backend is only for testing purpose."""
name = 'donothing'
[docs] def __init__(self, **kwargs):
self.kwargs = kwargs
super().__init__()
[docs] def null_shape(self, shape, mill, shape_units, **kwargs):
self.null_shape = (shape, mill, shape_units, kwargs) # noqa