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