Sha256: 4c91ee47c16207d699c202cc20d722ec23a54bdb311f7a487e01516e6391615b

Contents?: true

Size: 799 Bytes

Versions: 7

Compression:

Stored size: 799 Bytes

Contents

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

  Scenario: Real SVN repo
    Given I run bash:
      """
      svn co https://svn.apache.org/repos/asf/maven/skins/tags/maven-skins-9/src/site
      """
    When I run bin/hoc with "-f int -d site"
    Then Exit code is zero

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
hoc-0.10.0 features/svn_basics.feature
hoc-0.9.0 features/svn_basics.feature
hoc-0.8.1 features/svn_basics.feature
hoc-0.8 features/svn_basics.feature
hoc-0.7.3 features/svn_basics.feature
hoc-0.7.2 features/svn_basics.feature
hoc-0.7.1 features/svn_basics.feature