blob: 4c44eb99ccb0b69a312debb4d5f90506a33c13e4 (
plain)
1
2
3
4
5
6
7
8
|
require 'rails_helper'
RSpec.describe Import, :type => :model do
it { should belong_to(:referential) }
it { should belong_to(:workbench) }
it { should validate_presence_of(:file) }
end
|