Skip to content

Commit 9cbe3b1

Browse files
author
Ilja Bobkevic
committed
Update tests to include user name in the exec title
1 parent 63ffcc9 commit 9cbe3b1

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

spec/defines/box_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
context 'with title => bogus' do
55
let(:title) { 'bogus' }
66
it { should compile.with_all_deps }
7-
it { should contain_exec('vagrant-box-bogus') }
7+
it { should contain_exec('foo-vagrant-box-bogus') }
88
end
99
end

spec/defines/plugin_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
context 'with title => bogus' do
55
let(:title) { 'bogus' }
66
it { should compile.with_all_deps }
7-
it { should contain_exec('vagrant-plugin-bogus') }
7+
it { should contain_exec('foo-vagrant-plugin-bogus') }
88
end
99
end

spec/spec_helper.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
c.default_facts = {
55
:osfamily => 'RedHat',
66
:operatingsystem => 'RedHat',
7-
:architecture => 'x86_64'
7+
:architecture => 'x86_64',
8+
:id => 'foo'
89
}
910
end
1011

0 commit comments

Comments
 (0)