blob: 40d9afbe58f476f073cfbe4c88e9001e7d35d66a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# frozen_string_literal: true
RSpec.describe Saml::Kit::Cli do
it 'has a version number' do
expect(Saml::Kit::Cli::VERSION).not_to be_nil
end
describe 'version' do
let(:command) { 'version' }
specify { expect(status).to be_success }
specify { expect(output).to include(Saml::Kit::Cli::VERSION) }
end
end
|