specs: add an actual test case to the Exercice spec

This fixes the "No timing found for 'spec/models/exercice_spec.rb'"
warning message during specs.
This commit is contained in:
Pierre de La Morinerie 2020-01-28 12:00:34 +01:00
parent a8c71f851e
commit aaaf6f393b

View file

@ -1,4 +1,7 @@
require 'spec_helper'
describe Exercice do
describe 'validations' do
it { is_expected.to validate_presence_of(:ca) }
end
end