Packages
An extension on `Ecto.Schema` where you can provide additional options, which will be read by the corresponding `PropSchema.TestHarness` module, used in the test files to generate property tests.
Current section
Files
Jump to
Current section
Files
lib/prop_schema/examples/example_streamed.ex
defmodule PropSchema.ExampleStreamed do
@moduledoc false
import PropSchema.Stream
defmodule Subject do
@moduledoc false
generate_complete_map(PropSchema.ExampleModule, PropSchema.ExampleAdditionalProperties)
def public_complete, do: complete()
end
defmodule Owner do
@moduledoc false
generate_complete_map(PropSchema.ExampleOwner, PropSchema.ExampleAdditionalProperties)
def public_complete, do: complete()
end
end