Skip to content

Commit

Permalink
Bump version in README.md to 1.12.1 to release changes made in #52
Browse files Browse the repository at this point in the history
  • Loading branch information
nelsonic committed Aug 15, 2023
1 parent 728975b commit 3bc9c6f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Install by adding `useful` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:useful, "~> 1.12.0"}
{:useful, "~> 1.12.1"}
]
end
```
Expand Down
12 changes: 0 additions & 12 deletions test/useful_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,6 @@ defmodule UsefulTest do
assert Useful.atomize_map_keys(map) == map
end

test "atomize_map_keys/1 handles Plug.Upload" do
map = %{
image: %Plug.Upload{
path: "path/to/file",
filename: "file_name.ext",
content_type: "application/pdf"
}
}

assert Useful.atomize_map_keys(map) == map
end

test "atomize_map_keys/1 converts map containing list of maps" do
map = %{
"items" => [
Expand Down

0 comments on commit 3bc9c6f

Please sign in to comment.