aboutsummaryrefslogtreecommitdiffstats
path: root/python/tests/citco_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/tests/citco_test.py')
-rw-r--r--python/tests/citco_test.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/python/tests/citco_test.py b/python/tests/citco_test.py
new file mode 100644
index 00000000..90f9b0dd
--- /dev/null
+++ b/python/tests/citco_test.py
@@ -0,0 +1,25 @@
+from trade_dataclasses import (
+ CDSDeal,
+ IRSDeal,
+ SwaptionDeal,
+ TRSDeal,
+ CitcoTrade,
+ CitcoProduct,
+ SpotDeal,
+ BondDeal,
+ FxSwapDeal,
+)
+
+SpotDeal.from_tradeid(154).citco_stage()
+CDSDeal.from_tradeid(4001).citco_stage()
+CDSDeal.from_tradeid(3999).citco_stage()
+CDSDeal.from_tradeid(3715).citco_stage()
+CDSDeal.from_tradeid(3684).citco_stage()
+SwaptionDeal.from_tradeid(298).citco_stage()
+SwaptionDeal.from_tradeid(275).citco_stage()
+IRSDeal.from_tradeid(2).citco_stage()
+TRSDeal.from_tradeid(2).citco_stage()
+FxSwapDeal.from_tradeid(11).citco_stage()
+BondDeal.from_allocationid(2216).citco_stage()
+CitcoProduct().citco_upload()
+CitcoTrade.citco_upload()