SpeciesFileGroup/taxonworks

View on GitHub
app/models/nomenclatural_rank/icn/species_and_infraspecies_group/subvariety.rb

Summary

Maintainability
A
0 mins
Test Coverage
class NomenclaturalRank::Icn::SpeciesAndInfraspeciesGroup::Subvariety < NomenclaturalRank::Icn::SpeciesAndInfraspeciesGroup

  def self.parent_rank
    NomenclaturalRank::Icn::SpeciesAndInfraspeciesGroup::Variety
  end

  def self.valid_parents
    [NomenclaturalRank::Icn::SpeciesAndInfraspeciesGroup::Variety.to_s]
  end

  def self.abbreviation
    'subvar.'
  end
end