Files
fetsite/test/unit/modulgruppe_test.rb
2013-07-25 14:45:29 +02:00

9 lines
184 B
Ruby
Executable File

require 'test_helper'
class ModulgruppeTest < ActiveSupport::TestCase
test "should not be valid without name" do
mg=Modulgruppe.new();
mg.should_not be_valid;
end
end