rlafranchi/system_tester

View on GitHub
app/models/concerns/system_tester/title_validatable.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module SystemTester
  module TitleValidatable
    extend ActiveSupport::Concern

    included do
      validates_presence_of :title
      validates_format_of :title, with: /\A[a-zA-Z\s]*\z/
    end
  end
end