File size: 211 Bytes
def1299
 
 
 
 
 
 
1
2
3
4
5
6
7
8
require 'rails_helper'

RSpec.describe Language, type: :model do
  it { should validate_presence_of(:name) }
  it { should validate_presence_of(:run_cmd) }
  it { should validate_presence_of(:source_file) }
end