An Ecto SQLite3 adapter.
0

Configure Feed

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

Appease the lint gods

Matthew Johnston (May 14, 2024, 8:26 PM -0500) bd52a386 ba447196

+6 -1
+6 -1
test/ecto/integration/timestamps_test.exs
··· 126 126 test "insert and fetch nil values" do 127 127 now = DateTime.utc_now() 128 128 129 - product = insert_product(%{name: "Nil Date Test", approved_at: now, ordered_at: now}) 129 + product = 130 + insert_product(%{ 131 + name: "Nil Date Test", 132 + approved_at: now, 133 + ordered_at: now 134 + }) 130 135 131 136 product = TestRepo.get(Product, product.id) 132 137 assert product.name == "Nil Date Test"