An Ecto SQLite3 adapter.
0

Configure Feed

Select the types of activity you want to include in your feed.

Adds test for UUID handling

fixes #96

Matthew Johnston (Mar 15, 2021, 6:39 PM -0500) 21aaa745 5bf3a65f

+18
+18
test/ecto/integration/uuid_test.exs
··· 1 + defmodule Ecto.Integration.UUIDTest do 2 + use Ecto.Integration.Case 3 + 4 + alias Ecto.Integration.TestRepo 5 + alias Exqlite.Integration.Product 6 + 7 + test "handles uuid serialization and deserialization" do 8 + external_id = Ecto.UUID.generate() 9 + product = TestRepo.insert!(%Product{name: "Pupper Beer", external_id: external_id}) 10 + 11 + assert product.id 12 + assert product.external_id == external_id 13 + 14 + found = TestRepo.get(Product, product.id) 15 + assert found 16 + assert found.external_id == external_id 17 + end 18 + end