Updated simple plugin test

This commit is contained in:
Joel Collins 2019-01-08 16:15:39 +00:00
parent 4638071a00
commit eb5c9c3fee
3 changed files with 63 additions and 7 deletions

View file

@ -0,0 +1,13 @@
from openflexure_microscope.plugins import MicroscopePlugin
class Plugin(MicroscopePlugin):
"""
A set of default plugins
"""
def identify(self):
"""
Tests for access to Microscope.camera, and Microscope.stage
"""
return (self.microscope.camera, self.microscope.stage)