Sha256: a5a64a0f9ee39414c43e16dc4fd8c17afeb0b3e1fa04c21517f3aee3f4df7230
Contents?: true
Size: 1.12 KB
Versions: 2
Compression:
Stored size: 1.12 KB
Contents
@wip Feature: Cloning Omnitest can clone projects from git. Scenario: Cloning all projects Given the sample omnitest config When I run `bundle exec omnitest clone` Then the output should contain "-----> Cloning java" Then the output should contain "-----> Cloning python" Then the output should contain "-----> Cloning ruby" Scenario: Cloning selected projects Given the ruby project And the java project And the python project And the sample omnitest config When I run `bundle exec omnitest clone "(java|ruby)"` Then the output should contain "-----> Cloning java" Then the output should not contain "-----> Cloning python" Then the output should contain "-----> Cloning ruby" Scenario: Cloning by scenario Given the ruby project And the java project And the python project And the sample omnitest config And the hello_world skeptic config When I run `bundle exec omnitest clone hello` Then the output should contain "-----> Cloning java" Then the output should contain "-----> Cloning python" Then the output should contain "-----> Cloning ruby"
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
omnitest-0.2.2 | features/cloning.feature |
omnitest-0.2.1 | features/cloning.feature |