diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 15:58:35 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 15:58:35 +0000 |
commit | 9cc9e6f70e82bf4cab8a5909412df90b4ac71179 (patch) | |
tree | 0713892d1dd74963a7e8e7b230c2b48dc7499bd6 /t | |
parent | 468364d410b16658382050f9cecc3da976ceedad (diff) |
Added test-case for quiet-rubocop.
This is designed to ensure that we meet the style/code guideline
defined in `.rubocop.yml`.
Diffstat (limited to 't')
-rwxr-xr-x | t/test-rubocop.rb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/t/test-rubocop.rb b/t/test-rubocop.rb new file mode 100755 index 0000000..e44ea14 --- /dev/null +++ b/t/test-rubocop.rb @@ -0,0 +1,31 @@ +#!/usr/bin/ruby -rubygems + +require 'test/unit' + + +# +# Skip this test if we cannot load the gem. +# +begin + require 'rubocop' +rescue LoadError => ex + puts "Failed to load 'rubocop' gem - skipping" + exit(0) +end + + +class TestRubocop < Test::Unit::TestCase + + def setup + end + + def teardown + end + + def test_code + cli = RuboCop::CLI.new + result = cli.run + assert(result == 0, 'No errors found') + end + +end |