summaryrefslogtreecommitdiff
path: root/spec/acceptance/has_interface_with_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/acceptance/has_interface_with_spec.rb')
-rwxr-xr-xspec/acceptance/has_interface_with_spec.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/spec/acceptance/has_interface_with_spec.rb b/spec/acceptance/has_interface_with_spec.rb
index 41ae19f..7b38c95 100755
--- a/spec/acceptance/has_interface_with_spec.rb
+++ b/spec/acceptance/has_interface_with_spec.rb
@@ -27,7 +27,11 @@ describe 'has_interface_with function', :unless => UNSUPPORTED_PLATFORMS.include
end
it 'has_interface_with existing interface' do
pp = <<-EOS
- $a = 'lo'
+ if $osfamily == 'Solaris' {
+ $a = 'lo0'
+ } else {
+ $a = 'lo'
+ }
$o = has_interface_with($a)
notice(inline_template('has_interface_with is <%= @o.inspect %>'))
EOS