require 'spec_helper' RSpec.describe Account, type: :model do let(:subject) { FactoryGirl.create(:account) } describe 'validations' do it { should validate_presence_of(:canvas_account_id) } it { should validate_uniqueness_of(:canvas_account_id) } end end