blob: f2d396b354d72a0399cfb17a7677c3b36efa3e8f (
plain)
1
2
3
4
5
6
7
8
|
# frozen_string_literal: true
RSpec.describe '`spandx pull` command', type: :cli do
it 'executes `spandx help pull` command successfully' do
output = `spandx help pull`
expect(output).to eq(fixture_file_content('help-pull.expected'))
end
end
|