github.com/golang/dep@v0.5.4/internal/importers/importertest/testdata.go (about)

     1  // Copyright 2016 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package importertest
     6  
     7  const (
     8  	// RootProject is the containing project performing the import.
     9  	RootProject = "github.com/golang/notexist"
    10  
    11  	// Project being imported.
    12  	Project = "github.com/carolynvs/deptest-importers"
    13  
    14  	// ProjectSrc is an alternate source for the imported project.
    15  	ProjectSrc = "https://github.com/carolynvs/deptest-importers.git"
    16  
    17  	// UntaggedRev is a revision without any tags.
    18  	UntaggedRev = "9b670d143bfb4a00f7461451d5c4a62f80e9d11d"
    19  
    20  	// UntaggedRevAbbrv is the result of running `git describe` on UntaggedRev
    21  	UntaggedRevAbbrv = "v1.0.0-1-g9b670d1"
    22  
    23  	// Beta1Tag is a non-semver tag.
    24  	Beta1Tag = "beta1"
    25  
    26  	// Beta1Rev is the revision of Beta1Tag
    27  	Beta1Rev = "7913ab26988c6fb1e16225f845a178e8849dd254"
    28  
    29  	// V2Branch is a branch that could be interpreted as a semver tag (but shouldn't).
    30  	V2Branch = "v2"
    31  
    32  	// V2Rev is the HEAD revision of V2Branch.
    33  	V2Rev = "45dcf5a09c64b48b6e836028a3bc672b19b9d11d"
    34  
    35  	// V2PatchTag is a prerelease semver tag on the non-default branch.
    36  	V2PatchTag = "v2.0.0-alpha1"
    37  
    38  	// V2PatchRev is the revision of V2PatchTag.
    39  	V2PatchRev = "347760b50204948ea63e531dd6560e56a9adde8f"
    40  
    41  	// V1Tag is a semver tag that matches V1Constraint.
    42  	V1Tag = "v1.0.0"
    43  
    44  	// V1Rev is the revision of V1Tag.
    45  	V1Rev = "d0c29640b17f77426b111f4c1640d716591aa70e"
    46  
    47  	// V1PatchTag is a semver tag that matches V1Constraint.
    48  	V1PatchTag = "v1.0.2"
    49  
    50  	// V1PatchRev is the revision of V1PatchTag
    51  	V1PatchRev = "788963efe22e3e6e24c776a11a57468bb2fcd780"
    52  
    53  	// V1Constraint is a constraint that matches multiple semver tags.
    54  	V1Constraint = "^1.0.0"
    55  
    56  	// MultiTaggedRev is a revision with multiple tags.
    57  	MultiTaggedRev = "34cf993cc346f65601fe4356dd68bd54d20a1bfe"
    58  
    59  	// MultiTaggedSemverTag is a semver tag on MultiTaggedRev.
    60  	MultiTaggedSemverTag = "v1.0.4"
    61  
    62  	// MultiTaggedPlainTag is a non-semver tag on MultiTaggedRev.
    63  	MultiTaggedPlainTag = "stable"
    64  
    65  	// NonexistentPrj is a dummy project which does not exist on Github.
    66  	NonexistentPrj = "github.com/nonexistent/project"
    67  )