Sha256: d6b0c8f25f0a2a29bd1bb5cb732681b65791759f4ae49370a3e05c07d6c68f74
Contents?: true
Size: 428 Bytes
Versions: 40
Compression:
Stored size: 428 Bytes
Contents
# frozen_string_literal: true RSpec.describe FinApps::REST::Version do include SpecHelpers::Client subject(:version) { described_class.new(client) } describe '#show' do it { expect { version.show }.not_to raise_error } it('returns a string') { expect(version.show[0]).to be_a(String) } it('starts with the words "Version =>"') do expect(version.show[0]).to start_with('Version =>') end end end
Version data entries
40 entries across 40 versions & 1 rubygems