summaryrefslogtreecommitdiff
path: root/spec/integration/cli
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-04-04 15:26:43 -0600
committermo khan <mo.khan@gmail.com>2020-04-04 15:26:43 -0600
commit28394968623ce344e0f3dd0d0eff8b62330609af (patch)
tree61e7c5bc1fec6dd07e783d2001594525c5337939 /spec/integration/cli
parentc79178352dc3f119a3a185e95a1a86fc2f7ea0a1 (diff)
Rename fetch to pull
Diffstat (limited to 'spec/integration/cli')
-rw-r--r--spec/integration/cli/pull_spec.rb (renamed from spec/integration/cli/fetch_spec.rb)10
1 files changed, 5 insertions, 5 deletions
diff --git a/spec/integration/cli/fetch_spec.rb b/spec/integration/cli/pull_spec.rb
index 6f36c0f..de3426f 100644
--- a/spec/integration/cli/fetch_spec.rb
+++ b/spec/integration/cli/pull_spec.rb
@@ -1,16 +1,16 @@
# frozen_string_literal: true
-RSpec.describe '`spandx fetch` command', type: :cli do
- it 'executes `spandx help fetch` command successfully' do
- output = `spandx help fetch`
+RSpec.describe '`spandx pull` command', type: :cli do
+ it 'executes `spandx help pull` command successfully' do
+ output = `spandx help pull`
expected_output = <<~OUT
Usage:
- spandx fetch
+ spandx pull
Options:
-h, [--help], [--no-help] # Display usage information
- Fetch the latest offline cache
+ Pull the latest offline cache
OUT
expect(output).to eq(expected_output)