-
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.
- Loading branch information
1 parent
70a3fe4
commit 91969e0
Showing
4 changed files
with
14 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
defmodule Screenplay.OutfrontTakeoverTool.Alerts.TestFetch do | ||
@moduledoc false | ||
|
||
@spec get_state() :: binary() | ||
def get_state do | ||
@spec get_state!() :: binary() | ||
def get_state! do | ||
File.read!("test/fixtures/alerts.json") | ||
end | ||
|
||
@spec put_state(binary()) :: :ok | ||
def put_state(_state) do | ||
@spec put_state!(binary()) :: :ok | ||
def put_state!(_state) do | ||
:ok | ||
end | ||
end |