Skip to content

Commit

Permalink
Add default globs for -squashall, -pendantic
Browse files Browse the repository at this point in the history
  • Loading branch information
ajbouh committed Jul 21, 2016
1 parent 413cfe4 commit 571cc03
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/qa/emitter/emitter.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,14 @@ var starters = map[string]emitterStarter{

var defaultGlobs = map[string]string {
"rspec": "spec/**/*spec.rb",
"rspec-squashall": "spec/**/*spec.rb",
"rspec-pendantic": "spec/**/*spec.rb",
"minitest": "test/**/test*.rb",
"minitest-squashall": "test/**/test*.rb",
"minitest-pendantic": "test/**/test*.rb",
"test-unit": "test/**/test*.rb",
"test-unit-squashall": "test/**/test*.rb",
"test-unit-pendantic": "test/**/test*.rb",
}

func DefaultGlob(name string) string {
Expand Down

0 comments on commit 571cc03

Please sign in to comment.