Files
old-holivud2/spec/models/download_spec.rb
2020-05-31 22:38:19 +02:00

12 lines
229 B
Ruby

require 'rails_helper'
RSpec.describe Download, type: :model do
describe "associations" do
it { is_expected.to belong_to(:project) }
end
it "has an attached file" do
expect(subject).to respond_to(:file)
end
end