You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-24Lines changed: 4 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ If you're using Bundler to manage gems in your module repository, install `rspec
22
22
1. Add the following line to your `Gemfile`:
23
23
24
24
```ruby
25
-
gem 'rspec-puppet-facts', :require =>false
25
+
gem 'rspec-puppet-facts', require:false
26
26
```
27
27
28
28
2. Run `bundle install`.
@@ -54,38 +54,18 @@ By default, `rspec-puppet-facts` provides the facts only for `x86_64` architectu
54
54
*`'operatingsystem'` - The name of the operating system, as a string.
55
55
*`'operatingsystemrelease'` - An array of version numbers, as strings.
56
56
57
-
This is particularly useful if your module is split into operating system subclasses. For example, if you had a class called `myclass::debian` that you wanted to test against Debian 6 and Debian 7 on both `x86_64`_and_`i386` architectures, you could write the following test:
57
+
This is particularly useful if your module is split into operating system subclasses. For example, if you had a class called `myclass::debian` that you wanted to test against Debian 12 and Debian 11 on both `x86_64`_and_`i386` architectures, you could write the following test:
0 commit comments