29 lines
609 B
Ruby
29 lines
609 B
Ruby
|
# == Schema Information
|
||
|
#
|
||
|
# Table name: releases
|
||
|
#
|
||
|
# id :integer not null, primary key
|
||
|
# tag :string(255)
|
||
|
# description :text
|
||
|
# project_id :integer
|
||
|
# created_at :datetime
|
||
|
# updated_at :datetime
|
||
|
#
|
||
|
|
||
|
require 'rails_helper'
|
||
|
|
||
|
RSpec.describe Release, type: :model do
|
||
|
let(:release) { create(:release) }
|
||
|
|
||
|
it { expect(release).to be_valid }
|
||
|
|
||
|
describe 'associations' do
|
||
|
it { is_expected.to belong_to(:project) }
|
||
|
end
|
||
|
|
||
|
describe 'validation' do
|
||
|
it { is_expected.to validate_presence_of(:project) }
|
||
|
it { is_expected.to validate_presence_of(:description) }
|
||
|
end
|
||
|
end
|