Sha256: ea05b567b989ff947bfba10dfde73f8db74d7d9a56f5a787b4b70641814c44bf

Contents?: true

Size: 792 Bytes

Versions: 8

Compression:

Stored size: 792 Bytes

Contents

@cli
Feature: Pull Artifact
  As a CLI user
  I need a command to pull artifacts from the Nexus repository
  So I have a way to get artifacts from a remote system to my local machine

  Scenario: Pull an artifact
    When I get the artifact "com.riotgames.tar:mytar:1.0.3:tgz"
    Then I should have a copy of the "mytar-1.0.3.tgz" artifact on my computer

  Scenario: Pull an artifact to a specific place
    When I want the artifact "com.riotgames.tar:mytar:1.0.3:tgz" in a temp directory
    Then I should have a copy of the "mytar-1.0.3.tgz" artifact in a temp directory

  Scenario: Attempt to pull an artifact with the wrong parameters
    When I run `nexus-cli pull_artifact com.riotgames.whatever:something`
    Then I should expect an error because I need more colon separated values

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
nexus_cli-0.2.1 features/cli/pull_artifact.feature
nexus_cli-0.2.0 features/cli/pull_artifact.feature
nexus_cli-0.1.2 features/cli/pull_artifact.feature
nexus_cli-0.1.1 features/cli/pull_artifact.feature
nexus_cli-0.1.0 features/cli/pull_artifact.feature
nexus_cli-0.0.5 features/cli/pull_artifact.feature
nexus_cli-0.0.4 features/cli/pull_artifact.feature
nexus_cli-0.0.3 features/cli/pull_artifact.feature