Sha256: a01487c4dfe7337fcab138b2908271489b759110e1123320e1776ddbad475b60
Contents?: true
Size: 410 Bytes
Versions: 32
Compression:
Stored size: 410 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
32 entries across 32 versions & 1 rubygems