diff options
| author | mo khan <mo.khan@gmail.com> | 2020-04-04 15:26:43 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-04-04 15:26:43 -0600 |
| commit | 28394968623ce344e0f3dd0d0eff8b62330609af (patch) | |
| tree | 61e7c5bc1fec6dd07e783d2001594525c5337939 /spec/unit/cli | |
| parent | c79178352dc3f119a3a185e95a1a86fc2f7ea0a1 (diff) | |
Rename fetch to pull
Diffstat (limited to 'spec/unit/cli')
| -rw-r--r-- | spec/unit/cli/pull_spec.rb (renamed from spec/unit/cli/fetch_spec.rb) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/cli/fetch_spec.rb b/spec/unit/cli/pull_spec.rb index bbb3084..d0804d7 100644 --- a/spec/unit/cli/fetch_spec.rb +++ b/spec/unit/cli/pull_spec.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -RSpec.describe Spandx::Cli::Commands::Fetch do +RSpec.describe Spandx::Cli::Commands::Pull do subject { described_class.new(options) } let(:options) { {} } @@ -8,7 +8,7 @@ RSpec.describe Spandx::Cli::Commands::Fetch do describe '#execute' do let(:output) { StringIO.new } - it 'executes `fetch` command successfully' do + it 'executes `spandx pull` command successfully' do subject.execute(output: output) expected = <<~OUTPUT Updating https://github.com/mokhan/spandx-index.git... |
