We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 254db98 commit 9a1c973Copy full SHA for 9a1c973
spec/point/services/extract_service_spec.exs
@@ -21,9 +21,11 @@ defmodule Point.ExtractServiceSpec do
21
it "should creates an extract movement", do: expect(extract().type).to(eq "extract")
22
end
23
24
- context "when extract an amount from backup account that has less than needed backup" do
25
- let amount: Decimal.new 15000
+ context "when extract an amount from backup account when has less than needed backup" do
+ it "shouldn't allows extract required amount"
26
+ end
27
- it "shouldn't allows extract required amount", do: expect fn-> extract() end |> to(raise_exception())
28
+ context "when extract an amount from backup account when has greater than needed backup" do
29
+ it "should allows extract required amount"
30
31
0 commit comments