docker container links is actually a hash, fix tests
This commit is contained in:
parent
faba9bdae9
commit
7558524482
|
@ -17,7 +17,7 @@ describe VagrantPlugins::DockerProvider::Driver do
|
|||
ports: '8080:80',
|
||||
volumes: '/host/path:guest/path',
|
||||
detach: true,
|
||||
links: 'janis:joplin',
|
||||
links: {janis: 'joplin'},
|
||||
env: {key: 'value'},
|
||||
name: cid,
|
||||
hostname: 'jimi-hendrix',
|
||||
|
@ -43,7 +43,7 @@ describe VagrantPlugins::DockerProvider::Driver do
|
|||
end
|
||||
|
||||
it 'links containers' do
|
||||
expect(cmd_executed).to match(/--link #{params[:links]} .+ #{Regexp.escape params[:image]}/)
|
||||
expect(cmd_executed).to match(/--link #{params[:links].to_a.flatten.join(':')} .+ #{Regexp.escape params[:image]}/)
|
||||
end
|
||||
|
||||
it 'sets environmental variables' do
|
||||
|
|
Loading…
Reference in New Issue