Skip to content

Commit 7c05fa0

Browse files
committed
Docstest Operation.parameter/5
1 parent f90bc11 commit 7c05fa0

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

lib/open_api_spex/operation.ex

+17-1
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,27 @@ defmodule OpenApiSpex.Operation do
8686

8787
@doc """
8888
Shorthand for constructing an `OpenApiSpex.Parameter` given name, location, type, description and optional examples
89+
90+
## Examples
91+
92+
iex> Operation.parameter(
93+
...> :status,
94+
...> :query,
95+
...> %OpenApiSpex.Schema{type: :string, enum: ["pending", "in_progress", "completed"]},
96+
...> "The status of an entity"
97+
...> )
98+
%OpenApiSpex.Parameter{
99+
name: :status,
100+
in: :query,
101+
description: "The status of an entity",
102+
required: false,
103+
schema: %OpenApiSpex.Schema{enum: ["pending", "in_progress", "completed"], type: :string}
104+
}
89105
"""
90106
@spec parameter(
91107
name :: atom,
92108
location :: Parameter.location(),
93-
type :: Reference.t() | Schema.t() | atom,
109+
type :: Reference.t() | Schema.t() | Parameter.type() | atom(),
94110
description :: String.t(),
95111
opts :: keyword
96112
) :: Parameter.t()

lib/open_api_spex/parameter.ex

+2-1
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,12 @@ defmodule OpenApiSpex.Parameter do
7373
}
7474

7575
@type parameters :: %{String.t() => t | Reference.t()} | nil
76+
@type type :: :boolean | :integer | :number | :string | :array | :object
7677

7778
@doc """
7879
Sets the schema for a parameter from a simple type, reference or Schema
7980
"""
80-
@spec put_schema(t, Reference.t() | Schema.t() | atom) :: t
81+
@spec put_schema(t, Reference.t() | Schema.t() | type) :: t
8182
def put_schema(parameter = %Parameter{}, type = %Reference{}) do
8283
%{parameter | schema: type}
8384
end

test/operation_test.exs

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ defmodule OpenApiSpex.OperationTest do
44
alias OpenApiSpex.Operation
55
alias OpenApiSpexTest.UserController
66

7+
doctest Operation
8+
79
describe "Operation" do
810
test "from_route %Phoenix.Router.Route{}" do
911
plug = UserController

0 commit comments

Comments
 (0)