Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
burrow
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hang Yu
burrow
Commits
0bc51f85
Commit
0bc51f85
authored
8 years ago
by
Zach
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #313 from silasdavis/bye-docker
Let's not depend on docker
parents
f929555b
9244f795
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
glide.lock
+0
-10
0 additions, 10 deletions
glide.lock
test/fixtures/file_fixtures.go
+2
-2
2 additions, 2 deletions
test/fixtures/file_fixtures.go
with
2 additions
and
12 deletions
glide.lock
+
0
−
10
View file @
0bc51f85
...
...
@@ -25,16 +25,6 @@ imports:
version: 5215b55f46b2b919f50a1df0eaa5886afe4e3b3d
subpackages:
- spew
- name: github.com/docker/docker
version: 097d1a2b6186dcf1df8ae6135470871aca309a31
subpackages:
- pkg/ioutils
- pkg/term
- pkg/longpath
- pkg/system
- pkg/term/windows
- name: github.com/docker/go-units
version: f2d77a61e3c169b43402a0a1e84f06daf29b8190
- name: github.com/eris-ltd/eris-keys
version: 114ebc77443db9a153692233294e48bc7e184215
- name: github.com/eris-ltd/eris-logger
...
...
This diff is collapsed.
Click to expand it.
test/fixtures/file_fixtures.go
+
2
−
2
View file @
0bc51f85
...
...
@@ -4,7 +4,7 @@ import (
"os"
"path"
"
github.com/docker/docker/pkg
/ioutil
s
"
"
io
/ioutil"
)
// FileFixtures writes files to a temporary location for use in testing.
...
...
@@ -19,7 +19,7 @@ type FileFixtures struct {
// temporary root directory that is fixed when allocate() is called on the
// FileFixtures struct.
func
NewFileFixtures
(
identifyingPrefix
string
)
*
FileFixtures
{
dir
,
err
:=
ioutil
s
.
TempDir
(
""
,
identifyingPrefix
)
dir
,
err
:=
ioutil
.
TempDir
(
""
,
identifyingPrefix
)
return
&
FileFixtures
{
tempDir
:
dir
,
Error
:
err
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment