blob: bafe95e75ee895108a8a5b54d3c46617849abb3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'rails_helper'
RSpec.describe Workbench, :type => :model do
it 'should have a valid factory' do
expect(FactoryGirl.build(:workbench)).to be_valid
end
it { should validate_presence_of(:name) }
it { should validate_presence_of(:organisation) }
end
|