diff options
author | Varac <varac@leap.se> | 2017-10-13 14:22:08 +0200 |
---|---|---|
committer | Varac <varac@leap.se> | 2017-10-13 14:22:08 +0200 |
commit | f7779ce2eacaca51790d4e8d7756442b02612d30 (patch) | |
tree | 56871c123e1c964fc26e36bb86831a4a3511bd4f /spec/aliases/windowspath_spec.rb | |
parent | 066c08f8362d53f0f30897cb8710d11260c726ea (diff) | |
parent | 2339ea8db67ac7ef02d707c2a6011ae50f5d82b5 (diff) |
Diffstat (limited to 'spec/aliases/windowspath_spec.rb')
-rw-r--r-- | spec/aliases/windowspath_spec.rb | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/spec/aliases/windowspath_spec.rb b/spec/aliases/windowspath_spec.rb index c13794e..c20e373 100644 --- a/spec/aliases/windowspath_spec.rb +++ b/spec/aliases/windowspath_spec.rb @@ -1,6 +1,6 @@ require 'spec_helper' -if Puppet.version.to_f >= 4.5 +if Puppet::Util::Package.versioncmp(Puppet.version, '4.5.0') >= 0 describe 'test::windowspath', type: :class do describe 'valid handling' do %w{ @@ -10,6 +10,8 @@ if Puppet.version.to_f >= 4.5 X:/foo/bar X:\\foo\\bar \\\\host\\windows + X:/var/ůťƒ8 + X:/var/ネット }.each do |value| describe value.inspect do let(:params) {{ value: value }} @@ -30,7 +32,9 @@ if Puppet.version.to_f >= 4.5 "httds://notquiteright.org", "/usr2/username/bin:/usr/local/bin:/usr/bin:.", "C;//notright/here", - "C:noslashes" + "C:noslashes", + "C:ネット", + "C:ůťƒ8" ].each do |value| describe value.inspect do let(:params) {{ value: value }} @@ -38,7 +42,6 @@ if Puppet.version.to_f >= 4.5 end end end - end end end |