1
0
مراية لـ https://github.com/postalserver/postal.git تم المزامنة 2025-11-30 21:32:30 +00:00
الملفات
postal/spec/app/models/server_spec.rb
2024-02-10 17:18:23 +00:00

15 أسطر
269 B
Ruby

# frozen_string_literal: true
require "rails_helper"
describe Server do
context "model" do
subject(:server) { create(:server) }
it "should have a UUID" do
expect(server.uuid).to be_a String
expect(server.uuid.length).to eq 36
end
end
end