Sha256: c6f8ad017c1582817b55b652b784392da0d6f9fe5de5f8c2165e49b9022eb32e
Contents?: true
Size: 1.62 KB
Versions: 1
Compression:
Stored size: 1.62 KB
Contents
Feature: Initialization links In order to save time and money User should be able to bootstrap project environment ASAP Scenario: Init project with symbolic links Given The default aruba timeout is 10 seconds Given a file named "test_repo.yml" with: """ https://github.com/pietrushnic/dummy.git: dst: - src/dummy links: src/dummy/foobar.txt: - src/dummy/foobar_link src/dummy/foobar: - src/dummy/foobar_dir_link """ When I run `clenver init test_repo.yml` Then the following links should exist: | src/dummy/foobar_link | | src/dummy/foobar_dir_link | @announce Scenario: files backup verification Given The default aruba timeout is 10 seconds Given a file named "test_repo.yml" with: """ https://github.com/pietrushnic/dummy.git: links: dummy/foobar.txt: - foobar_link - foobar_link dummy/foobar: - foobar_dir_link """ When I run `clenver init test_repo.yml` When I run `tree` Then the following links should exist: | foobar_link | | foobar_link_old | | foobar_dir_link | Scenario: use system variable in path Given The default aruba timeout is 10 seconds Given a file named "test_repo.yml" with: """ https://github.com/pietrushnic/dummy.git: links: $HOME/foobar.txt: - $HOME/foobar_link """ When I run `clenver init test_repo.yml some_tmp` Then the following links should exist: | $HOME/foobar_link | @wip Scenario: destination already exist Scenario: destination not exist Scenario: access denied
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
clenver-0.1.14 | features/init/links.feature |