Welcome to mirror list, hosted at ThFree Co, Russian Federation.

term_agreement_spec.rb « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a59bf1196926374b1f0c17a93bd33c99cf72e6f7 (plain)
1
2
3
4
5
6
7
8
require 'spec_helper'

describe TermAgreement do
  describe 'validations' do
    it { is_expected.to validate_presence_of(:term) }
    it { is_expected.to validate_presence_of(:user) }
  end
end