SpeciesFileGroup/taxonworks

View on GitHub
app/models/nomenclatural_rank/iczn/genus_group/subgenus.rb

Summary

Maintainability
A
0 mins
Test Coverage
class NomenclaturalRank::Iczn::GenusGroup::Subgenus < NomenclaturalRank::Iczn::GenusGroup

  def self.parent_rank
    NomenclaturalRank::Iczn::GenusGroup::Supersubgenus
  end

  def self.valid_parents
    [NomenclaturalRank::Iczn::GenusGroup::Genus.to_s]
  end

  def self.abbreviation
    'sgen.'
  end
end