Sha256: 32634cf2b74e345cb823bad59636bfccbdad503a3c722731b54a451603b5afde
Contents?: true
Size: 520 Bytes
Versions: 2
Compression:
Stored size: 520 Bytes
Contents
Feature: Exclude dirs from Git counting As a source code writer I want to be able to exclude certain files from counting Scenario: Simple git repo Given I run bash: """ set -e git init . git config user.email test@teamed.io git config user.name test mkdir x echo 'hello, world!' > x/invalid.txt echo 'hello, world!' > valid.txt git add . git commit -am test """ When I run bin/hoc with "-e x/** -e a.txt" Then Exit code is zero And Stdout contains "1"
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
hoc-0.6 | features/git_excludes.feature |
hoc-0.5 | features/git_excludes.feature |