8 lines
210 B
Ruby
8 lines
210 B
Ruby
require 'rails_helper'
|
|
|
|
RSpec.describe Client, type: :model do
|
|
it { should validate_presence_of(:name) }
|
|
it { should validate_presence_of(:name_id) }
|
|
it { should validate_presence_of(:api_key_hash) }
|
|
end
|