Mercurial > repos > other > Puppet
comparison modules/apache/CONTRIBUTING.md @ 257:675c1cc61eaf
Update Apache module to get CentOS 8 support
Unfortunately it only fixes some bits. mod_wsgi still needs
other approaches
This also overrides the vhost modification to make them come last
in the import order (after module loading)
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 22 Dec 2019 14:43:29 -0500 |
parents | 37675581a273 |
children | d9352a684e62 |
comparison
equal
deleted
inserted
replaced
252:47750947f4dc | 257:675c1cc61eaf |
---|---|
157 ``` | 157 ``` |
158 | 158 |
159 With all dependencies in place and up-to-date we can now run the tests: | 159 With all dependencies in place and up-to-date we can now run the tests: |
160 | 160 |
161 ```shell | 161 ```shell |
162 % rake spec | 162 % bundle exec rake spec |
163 ``` | 163 ``` |
164 | 164 |
165 This will execute all the [rspec tests](http://rspec-puppet.com/) tests | 165 This will execute all the [rspec tests](http://rspec-puppet.com/) tests |
166 under [spec/defines](./spec/defines), [spec/classes](./spec/classes), | 166 under [spec/defines](./spec/defines), [spec/classes](./spec/classes), |
167 and so on. rspec tests may have the same kind of dependencies as the | 167 and so on. rspec tests may have the same kind of dependencies as the |
176 installed on your system. | 176 installed on your system. |
177 | 177 |
178 You can run them by issuing the following command | 178 You can run them by issuing the following command |
179 | 179 |
180 ```shell | 180 ```shell |
181 % rake spec_clean | 181 % bundle exec rake spec_clean |
182 % rspec spec/acceptance | 182 % bundle exec rspec spec/acceptance |
183 ``` | 183 ``` |
184 | 184 |
185 This will now download a pre-fabricated image configured in the [default node-set](./spec/acceptance/nodesets/default.yml), | 185 This will now download a pre-fabricated image configured in the [default node-set](./spec/acceptance/nodesets/default.yml), |
186 install puppet, copy this module and install its dependencies per [spec/spec_helper_acceptance.rb](./spec/spec_helper_acceptance.rb) | 186 install puppet, copy this module and install its dependencies per [spec/spec_helper_acceptance.rb](./spec/spec_helper_acceptance.rb) |
187 and then run all the tests under [spec/acceptance](./spec/acceptance). | 187 and then run all the tests under [spec/acceptance](./spec/acceptance). |
206 | 206 |
207 | 207 |
208 Additional Resources | 208 Additional Resources |
209 ==================== | 209 ==================== |
210 | 210 |
211 * [Getting additional help](http://puppetlabs.com/community/get-help) | 211 * [Getting additional help](http://puppet.com/community/get-help) |
212 | 212 |
213 * [Writing tests](http://projects.puppetlabs.com/projects/puppet/wiki/Development_Writing_Tests) | 213 * [Writing tests](https://docs.puppet.com/guides/module_guides/bgtm.html#step-three-module-testing) |
214 | |
215 * [Patchwork](https://patchwork.puppetlabs.com) | |
216 | 214 |
217 * [General GitHub documentation](http://help.github.com/) | 215 * [General GitHub documentation](http://help.github.com/) |
218 | 216 |
219 * [GitHub pull request documentation](http://help.github.com/send-pull-requests/) | 217 * [GitHub pull request documentation](http://help.github.com/send-pull-requests/) |
220 | 218 |