Feature: SVN Repo Processing As a source code writer I want to be able to calculate my hits-of-code metric Scenario: Simple SVN repo Given It is Unix Given I run bash: """ svnadmin create base svn co file://$(pwd)/base repo cd repo echo 'Hello, world!' > test.txt svn add test.txt svn ci -m 'first commit' echo 'Bye!' > test.txt svn ci -m 'second commit' svn rm test.txt svn ci -m 'third commit' svn up """ When I run bin/hoc with "-f int -d repo" Then Exit code is zero