class WikidataPositionHistory::Check::MissingSuccessor

Is there a 'replaced by' but no next item in the list?

Public Instance Methods

headline() click to toggle source
# File lib/wikidata_position_history/checks.rb, line 144
def headline
  'Inconsistent successor'
end
possible_explanation() click to toggle source
# File lib/wikidata_position_history/checks.rb, line 148
def possible_explanation
  "#{current.officeholder.qlink} has a {{P|1366}} of #{successor_qlink}, but is not followed by anyone here"
end
problem?() click to toggle source
# File lib/wikidata_position_history/checks.rb, line 140
def problem?
  successor_qlink && !later_holder?
end