Skip to content

Commit 571cc03

Browse files
committed
Add default globs for -squashall, -pendantic
1 parent 413cfe4 commit 571cc03

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/qa/emitter/emitter.go

+6
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,14 @@ var starters = map[string]emitterStarter{
7979

8080
var defaultGlobs = map[string]string {
8181
"rspec": "spec/**/*spec.rb",
82+
"rspec-squashall": "spec/**/*spec.rb",
83+
"rspec-pendantic": "spec/**/*spec.rb",
8284
"minitest": "test/**/test*.rb",
85+
"minitest-squashall": "test/**/test*.rb",
86+
"minitest-pendantic": "test/**/test*.rb",
8387
"test-unit": "test/**/test*.rb",
88+
"test-unit-squashall": "test/**/test*.rb",
89+
"test-unit-pendantic": "test/**/test*.rb",
8490
}
8591

8692
func DefaultGlob(name string) string {

0 commit comments

Comments
 (0)