docker container links is actually a hash, fix tests

This commit is contained in:
Gosha Arinich 2014-05-08 21:27:58 +03:00
parent faba9bdae9
commit 7558524482
1 changed files with 2 additions and 2 deletions

View File

@ -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