From 4c9c35520d8949e07b3daa29294b12bb044118f6 Mon Sep 17 00:00:00 2001 From: Wilson Silva Date: Sat, 25 Feb 2023 15:05:03 +0700 Subject: [PATCH] Add a missing spec for EventKind::CONTACT_LIST --- spec/nostr/event_kind_spec.rb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/spec/nostr/event_kind_spec.rb b/spec/nostr/event_kind_spec.rb index d83f36c..06c5b06 100644 --- a/spec/nostr/event_kind_spec.rb +++ b/spec/nostr/event_kind_spec.rb @@ -20,4 +20,10 @@ RSpec.describe Nostr::EventKind do expect(described_class::RECOMMEND_SERVER).to eq(2) end end + + describe '::CONTACT_LIST' do + it 'is an integer' do + expect(described_class::CONTACT_LIST).to eq(3) + end + end end