Files
2017-05-08 16:39:32 +01:00

15 lines
240 B
Ruby

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