Election results in the London Borough of Sutton.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

14 lines
219 B

  1. # Check whether a list of parties is in the parties table
  2. require_relative '../models'
  3. ARGF.each do |line|
  4. line.strip!
  5. print line
  6. if Party.find(line)
  7. puts " found"
  8. else
  9. puts " not found"
  10. end
  11. end