generated from finos-labs/project-blueprint
-
Notifications
You must be signed in to change notification settings - Fork 4
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
450c5de
commit 712affe
Showing
3 changed files
with
34 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,6 @@ docs/contributing.md | |
|
||
# We use YARN | ||
website/package-lock.json | ||
|
||
# Elm | ||
elm-stuff/ |
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,30 @@ | ||
module Morphir.TechSprint.Minimal.RuleTests exposing (..) | ||
|
||
import Test exposing (..) | ||
import Expect | ||
import Morphir.TechSprint.Minimal.Rule exposing (..) | ||
import Morphir.TechSprint.Minimal.BasicTypes as BasicTypes exposing (Date) | ||
import Morphir.TechSprint.Minimal.Type exposing (WorkflowStep) | ||
import Morphir.TechSprint.Minimal.Type exposing (Trade) | ||
import Morphir.TechSprint.Minimal.Type exposing (TradeState) | ||
import Morphir.TechSprint.Minimal.Type exposing (ReportableEvent) | ||
|
||
cFTCPart45TransactionReportTest : Test | ||
cFTCPart45TransactionReportTest = | ||
let | ||
tradeDate = BasicTypes.Date 1 1 2022 | ||
|
||
originatingWorkflowStep = WorkflowStep [] | ||
reportableTrade = (TradeState (Trade tradeDate)) | ||
|
||
event : ReportableEvent | ||
event = ReportableEvent originatingWorkflowStep reportableTrade | ||
|
||
|
||
-- expectedResult : CFTCPart45TransactionReport | ||
-- expectedResult = | ||
|
||
in | ||
describe "cFTCPart45TransactionReport test" | ||
[ test "foo" <| \_ -> Expect.false "false" False | ||
] |