Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ELIXIR:community-garden add new test to Task4 #1346

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions exercises/concept/community-garden/test/community_garden_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,21 @@ defmodule CommunityGardenTest do
assert plot_4.plot_id == 4
end

@tag task_id: 4
test "release only one plot at time" do
assert {:ok, pid} = CommunityGarden.start()

plot_1 = CommunityGarden.register(pid, "Keanu Reeves")
plot_2 = CommunityGarden.register(pid, "Thomas A. Anderson")

assert plot_1.plot_id == 1
assert plot_2.plot_id == 2

CommunityGarden.release(pid, plot_1.plot_id)

assert [plot_2] = CommunityGarden.list_registrations(pid)
end

@tag task_id: 5
test "can get registration of a registered plot" do
assert {:ok, pid} = CommunityGarden.start()
Expand Down