stadtratmonitor/spec/factory_helper.rb
2016-02-20 07:47:43 +01:00

29 lines
490 B
Ruby

module FactoryHelper
PAPER_TYPES = [
"Verwaltungsstandpunkt",
"Anfrage",
"Beschlussvorlage",
"Änderungsantrag",
"Antrag",
"Neufassung",
"Informationsvorlage",
"Einwohneranfrage",
"Petition",
"schriftliche Antwort zur Anfrage",
"Wichtige Angelegenheit",
"Eilentscheidung",
"Dringliche Anfrage"
]
def self.paper_type
PAPER_TYPES.sample
end
REFERENCE = "A-%05i/16"
def self.reference(seq)
REFERENCE % seq
end
end