require "rails_helper" RSpec.describe ApiSecret, type: :model do describe "validations" do it { is_expected.to belong_to(:user) } it { is_expected.to validate_presence_of(:description) } end end