1
0
مراية لـ https://github.com/postalserver/postal.git تم المزامنة 2025-11-30 21:32:30 +00:00
الملفات
postal/spec/app/models/organization_spec.rb
2017-05-08 14:48:15 +01:00

15 أسطر
270 B
Ruby

require 'rails_helper'
describe Organization do
context "model" do
subject(:organization) { create(:organization) }
it "should have a UUID" do
expect(organization.uuid).to be_a String
expect(organization.uuid.length).to eq 36
end
end
end