def test_nomethods_must_be_implemented(self): node = DataSource() with pytest.raises(NotImplementedError): node.get_native_coordinates() with pytest.raises(NotImplementedError): node.get_data(None, None)
def test_get_data_not_implemented(self): node = DataSource() with pytest.raises(NotImplementedError): node.get_data(None, None)