Skip to content

Commit

Permalink
Add coverage support
Browse files Browse the repository at this point in the history
  • Loading branch information
judofyr committed Jun 2, 2019
1 parent 4bdc7a9 commit ad97844
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
@@ -1 +1,2 @@
/Gemfile.lock
/coverage
6 changes: 5 additions & 1 deletion Gemfile
@@ -1,5 +1,9 @@
source 'https://rubygems.org'

gem 'rake'
gem 'minitest', '~> 5.11.0'

group :test do
gem 'minitest', '~> 5.11.0'
gem 'simplecov'
end

5 changes: 5 additions & 0 deletions test/helper.rb
@@ -1,3 +1,8 @@
require 'simplecov'
SimpleCov.start do
add_filter "/test/"
end

require_relative '../lib/glush'
require_relative 'grammars'

Expand Down

0 comments on commit ad97844

Please sign in to comment.