Files
fetsite/spec/models/themengruppe_spec.rb
Andreas Stephanides 2c0f3ff0b8 THEMA TESTS
2014-03-30 20:09:02 +02:00

12 lines
230 B
Ruby

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