inspec/test/unit/reporters
Jerry Aldrich 20776b363d Add support for multiple descriptions for controls (#3424)
* Add support for multiple descriptions for controls

This adds the ability to specify multiple descriptions in controls.

Example:

```ruby
control 'my-control' do
  impact 1.0
  title 'My control'
  desc 'A default description'
  desc 'rational', 'I need an example'
  describe file('/tmp') do
    it { should be_directory }
  end
end
```

Many thanks to @jquick for helping me with the unit tests.
* Remove unused `descriptions` method
* Remove unused profile from test mocks
* Respond to feedback

Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com>
2018-09-26 13:28:57 -04:00
..
automate_test.rb Add support for multiple descriptions for controls (#3424) 2018-09-26 13:28:57 -04:00
base_test.rb Add new "reporter" system (replacement for "formatters"), support multiple reporters per run (#2464) 2018-02-08 10:06:58 +01:00
cli_test.rb Mitigate trivial warning output on test (#2872) 2018-03-28 11:22:01 -04:00
json_automate_test.rb Fix json automate render and make the unit tests work. (#3408) 2018-09-18 14:20:48 -04:00
json_min_test.rb This fixes the audit issue expecting a report hash output. 2018-02-09 10:59:39 -05:00
json_test.rb Add support for multiple descriptions for controls (#3424) 2018-09-26 13:28:57 -04:00
junit_test.rb Add target attribute to test results for JUnit reporter. (#2839) 2018-04-12 09:59:34 -04:00
yaml_test.rb Adding YAML reporter (#3081) 2018-05-31 13:42:09 -04:00