Skip to content
This repository has been archived by the owner on Sep 9, 2020. It is now read-only.

Commit

Permalink
test(status): tests for missing pkgs lock mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
darkowlzz committed Sep 28, 2017
1 parent 9547a15 commit f5750a7
Show file tree
Hide file tree
Showing 8 changed files with 42 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package main

import (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"commands": [
["status"]
],
"error-expected": "inputs-digest mismatch",
"error-expected": "This happens when Gopkg.toml is modified",
"vendor-final": []
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// Copyright 2017 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package main

import (
_ "github.com/sdboyer/deptestdos"
)

func main() {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"commands": [
["status"]
],
"error-expected": "due to the following packages missing from the lock",
"vendor-final": []
}

0 comments on commit f5750a7

Please sign in to comment.