How to use version_with_support method of InspecPlugins.Compliance Package

Best Inspec_ruby code snippet using InspecPlugins.Compliance.version_with_support

support.rb

Source:support.rb Github

copy

Full Screen

...6 class Support7 # for a feature, returns either:8 # - a version v0: v supports v0 iff v0 <= v9 # - an array [v0, v1] of two versions: v supports [v0, v1] iff v0 <= v < v110 def self.version_with_support(feature)11 case feature.to_sym12 when :oidc # open id connect authentication13 Gem::Version.new('0.16.19')14 else15 Gem::Version.new('0.0.0')16 end17 end18 # determines if the given version support a certain feature19 def self.supported?(feature, version)20 sup = version_with_support(feature)21 if sup.is_a?(Array)22 Gem::Version.new(version) >= sup[0] &&23 Gem::Version.new(version) < sup[1]24 else25 Gem::Version.new(version) >= sup26 end27 end28 # we do not know the version, therefore we do not know if its possible to use the feature29 # return if self['version'].nil? || self['version']['version'].nil?30 end31 end32end...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful