12 lines
230 B
Ruby
12 lines
230 B
Ruby
|
require 'rails_helper'
|
||
|
|
||
|
describe NoteDiffFile do
|
||
|
describe 'associations' do
|
||
|
it { is_expected.to belong_to(:diff_note) }
|
||
|
end
|
||
|
|
||
|
describe 'validations' do
|
||
|
it { is_expected.to validate_presence_of(:diff_note) }
|
||
|
end
|
||
|
end
|