Skip to content

Commit f4a1eb9

Browse files
committed
update test
1 parent f917a5b commit f4a1eb9

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.kitchen.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
driver :
33
name : <%= if ENV['TRAVIS'] then 'localhost' else 'vagrant' end %>
4-
box : "ubuntu/trusty64"
4+
box : "ubuntu/bionic64"
55
customize :
66
cpus : 2
77
memory : 2048
@@ -28,4 +28,4 @@ platforms:
2828
suites:
2929
- name : default
3030
provisioner :
31-
playbook : "test/integration/defaults/defaults.yml"
31+
playbook : "test/integration/defaults/defaults.yml"

Gemfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ group :development do
55
gem 'kitchen-vagrant'
66
gem 'kitchen-ansiblepush'
77
gem 'kitchen-localhost'
8-
gem 'net-ssh', '~> 2.0'
9-
end
8+
gem 'net-ssh', '~> 4.0'
9+
end

test/integration/defaults/serverspec/default_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55

66
# Default version
77
describe command('docker --version') do
8-
its(:stdout) { should contain('1.10') }
8+
its(:stdout) { should contain('19.03.5') }
99
end

test/integration/defaults/serverspec/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ set :backend, :exec
55

66
# Default version
77
describe command('docker --version') do
8-
its(:stdout) { should contain('1.9') }
8+
its(:stdout) { should contain('19.03.5') }
99
end

test/integration/docker-py/serverspec/default_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55

66
# Default version
77
describe command('docker --version') do
8-
its(:stdout) { should contain('1.10') }
8+
its(:stdout) { should contain('19.03.5') }
99
end

0 commit comments

Comments
 (0)