stadtratmonitor/spec/factory_helper.rb
2016-02-19 08:39:30 +01:00

23 lines
410 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
end