Files
fetsite/spec/models/themengruppe_spec.rb

12 lines
229 B
Ruby

require 'spec_helper'
describe Themengruppe do
[:text, :title].each do |attr|
it "should not be valid without #{attr}" do
tg=FactoryBot.build(:themengruppe, attr=>nil)
tg.should_not be_valid
end
end
end