github.com/niedbalski/juju@v0.0.0-20190215020005-8ff100488e47/environs/gui/export_test.go (about)

     1  // Copyright 2016 Canonical Ltd.
     2  // Licensed under the AGPLv3, see LICENCE file for details.
     3  
     4  package gui
     5  
     6  import (
     7  	"github.com/juju/juju/environs/simplestreams"
     8  )
     9  
    10  var (
    11  	StreamsVersion = streamsVersion
    12  	DownloadType   = downloadType
    13  )
    14  
    15  func NewConstraint(stream string, majorVersion int) *constraint {
    16  	return &constraint{
    17  		LookupParams: simplestreams.LookupParams{Stream: stream},
    18  		majorVersion: majorVersion,
    19  	}
    20  }