github.com/wallyworld/juju@v0.0.0-20161013125918-6cf1bc9d917a/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  }