Feature: Initialize environment As a administrator I want to have utility to init environment for local_pac In order to make less mistakes Scenario: Not initialized Given a file named "config.yaml" with: """ pid_file: 'run/pid' local_storage: 'data/storage.git' access_log: 'log/access_log' executable: 'bin/local_pac' """ When I successfully run `local_pac init --config-file config.yaml` Then the following directories should exist: | directory | | 'run' | | 'data/storage.git' | | 'log' | And the following files should exist: | file | | 'data/storage.git/hooks/pre-receive' |