Add a missing spec for EventKind::CONTACT_LIST

This commit is contained in:
Wilson Silva 2023-02-25 15:05:03 +07:00
parent 2fc56a2b1a
commit 4c9c35520d
No known key found for this signature in database
GPG Key ID: 65135F94E23F82C8

View File

@ -20,4 +20,10 @@ RSpec.describe Nostr::EventKind do
expect(described_class::RECOMMEND_SERVER).to eq(2) expect(described_class::RECOMMEND_SERVER).to eq(2)
end end
end end
describe '::CONTACT_LIST' do
it 'is an integer' do
expect(described_class::CONTACT_LIST).to eq(3)
end
end
end end