github.com/axw/juju@v0.0.0-20161005053422-4bd6544d08d4/apiserver/backups/mock_test.go (about)

     1  // Copyright 2016 Canonical Ltd.
     2  // Licensed under the AGPLv3, see LICENCE file for details.
     3  
     4  package backups_test
     5  
     6  import "github.com/juju/juju/state"
     7  
     8  type stateShim struct {
     9  	*state.State
    10  }
    11  
    12  func (s *stateShim) MachineSeries(id string) (string, error) {
    13  	return "xenial", nil
    14  }