Sha256: 9c18aa1e9bb29de359b98416afaa7f73edcf8a9d00dd8655ef818b6c43216ffb

Contents?: true

Size: 423 Bytes

Versions: 4

Compression:

Stored size: 423 Bytes

Contents

# people generally prefix or suffix their test file names with these labels
# https://en.wikibooks.org/wiki/Ruby_Programming/Unit_testing#Naming_Conventions
labels = %w[ test ts tc t ]
labels_glob = '{' + labels.join(',') + '}'
labels_grep = '(' + labels.join('|') + ')'

$tork_config_test_glob = "**/{#{labels_glob}_*,*_#{labels_glob}}.rb"
$tork_config_test_grep = %r{.*(\b#{labels_grep}_[^/]+|[^/]+_#{labels_grep})\.rb$}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
tork-20.0.1 lib/tork/config/test/config.rb
tork-20.0.0 lib/tork/config/test/config.rb
tork-19.11.1 lib/tork/config/test/config.rb
tork-19.10.0 lib/tork/config/test/config.rb