get.porter.sh/porter@v1.3.0/tests/testdata/helpers.go (about) 1 package testdata 2 3 const ( 4 // MyBuns is our standard test bundle with a bunch of features in it. 5 MyBuns = "mybuns" 6 7 // MyBunsRef is the full reference to the mybuns test bundle. 8 MyBunsRef = "localhost:5000/mybuns:v0.1.2" 9 10 // MyDb is the test bundle that is a dependency of mybuns. 11 MyDb = "mydb" 12 13 // MyDbRef is the full reference to the mydb test bundle. 14 MyDbRef = "localhost:5000/mydb:v0.1.0" 15 16 // MyEnv is the root test bundle that exercises dependencies. 17 MyEnv = "myenv" 18 19 // MyEnvRef is the full reference to the myenv test bundle. 20 MyEnvRef = "localhost:5000/myenv:v0.1.0" 21 22 // MyInfra is the root test bundle that exercises dependencies. 23 MyInfra = "myinfra" 24 25 // MyInfraRef is the full reference to the myinfra test bundle. 26 MyInfraRef = "localhost:5000/myinfra:v0.1.0" 27 28 // MySQLDb is the test bundle that is a dependency of the myinfra test bundle. 29 MySQLDb = "mysqldb" 30 31 // MySQLDbRef is the full reference to the mysqldb test bundle. 32 MySQLDbRef = "localhost:5000/mysqldb:v0.1.0" 33 34 // MyApp is the root test bundle that exercises dependencies. 35 MyApp = "myapp" 36 37 // MyAppRef is the full reference to the myapp test bundle. 38 MyAppRef = "localhost:5000/myapp:v1.2.3" 39 40 // EmbeddedImg is the test bundle that exercies embedded images. 41 EmbeddedImg = "embeddedimg" 42 )