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