Sha256: dddb02623a04e6a8aeed4782d60f8d87dec4039b02413dcb098cd55223abb531
Contents?: true
Size: 561 Bytes
Versions: 19
Compression:
Stored size: 561 Bytes
Contents
# frozen_string_literal: true RSpec.describe "Projects TechnologyTypes Integration" do it "returns a list of technology types and their parent types" do technology_types = Patch::TechnologyType.retrieve_technology_types() expect(technology_types.data.count).to be_positive expect(technology_types.data.first.slug).to be_a(String) expect(technology_types.data.first.name).to be_a(String) parent = technology_types.data.first.parent_technology_type expect(parent.slug).to be_a(String) expect(parent.name).to be_a(String) end end
Version data entries
19 entries across 19 versions & 1 rubygems