285ffb2238
We show a blue flash banner if the user already accepted, and show a button allowing them to continue to the application.
17 lines
439 B
Ruby
17 lines
439 B
Ruby
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
|
|
|
|
describe '.accepted' do
|
|
it 'only includes accepted terms' do
|
|
accepted = create(:term_agreement, :accepted)
|
|
create(:term_agreement, :declined)
|
|
|
|
expect(described_class.accepted).to contain_exactly(accepted)
|
|
end
|
|
end
|
|
end
|