-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
https://github.com/bonfire-networks/bonfire-app/issues/1078
- Loading branch information
1 parent
36ca9b8
commit a7f9ad4
Showing
12 changed files
with
315 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
defmodule Bonfire.Boundaries.BoundaryPresetsTest do | ||
use Bonfire.UI.Boundaries.ConnCase, async: true | ||
@moduletag :ui | ||
|
||
alias Bonfire.Social.Fake | ||
alias Bonfire.Posts | ||
alias Bonfire.Files.Test | ||
|
||
setup do | ||
account = fake_account!() | ||
me = fake_user!(account) | ||
alice = fake_user!(account) | ||
bob = fake_user!(account) | ||
carl = fake_user!(account) | ||
conn = conn(user: me, account: account) | ||
|
||
{:ok, conn: conn, account: account, me: me, alice: alice, bob: bob, carl: carl} | ||
end | ||
|
||
test "I can create a new preset" do | ||
end | ||
|
||
test "I can add a circle to a preset and specify the role" do | ||
end | ||
|
||
test "I can add a user to a preset and specify the role" do | ||
end | ||
|
||
test "I can edit a preset I've previously created" do | ||
end | ||
|
||
test "I can delete a preset I've previously created" do | ||
end | ||
|
||
test "I can pick the preset previously created from the list of presets on composer" do | ||
end | ||
end |
Oops, something went wrong.