diff options
Diffstat (limited to 'spec/models')
-rw-r--r-- | spec/models/organisation_spec.rb | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/spec/models/organisation_spec.rb b/spec/models/organisation_spec.rb index 6f6cdca..090cdc2 100644 --- a/spec/models/organisation_spec.rb +++ b/spec/models/organisation_spec.rb @@ -1,5 +1,16 @@ require 'rails_helper' RSpec.describe Organisation, type: :model do - pending "add some examples to (or delete) #{__FILE__}" + describe "validations" do + it "is invalid if no name given" do + org = Organisation.new() + expect(org).to_not be_valid + end + + it "is invalid with a name longer than 25 chars" do + name = "a" * 26 + org = Organisation.new(name: name) + expect(org).to_not be_valid + end + end end |