aboutsummaryrefslogtreecommitdiff
path: root/launcher.py
diff options
context:
space:
mode:
authorTinWoodman92 <chrhodgden@gmail.com>2023-06-11 21:04:42 -0500
committerTinWoodman92 <chrhodgden@gmail.com>2023-06-11 21:04:42 -0500
commit3527e1a22e559f8a3d6e87bb2d24adb6ae2c64a4 (patch)
tree1ac106f359141306d1c694a210523964f2a4f936 /launcher.py
parent5e2e0b99ca28f10498df62bf2c1da1360437172e (diff)
Migrated use-case launcher.py to test-case test_import_variable.py. R file renamed accordingly.
Diffstat (limited to 'launcher.py')
-rw-r--r--launcher.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/launcher.py b/launcher.py
deleted file mode 100644
index 50aaedc..0000000
--- a/launcher.py
+++ /dev/null
@@ -1,19 +0,0 @@
-import dialoguer
-
-src_fil_r = dialoguer.Dialogue('source_file.r')
-print('active:', src_fil_r.active)
-src_fil_r.open()
-print('active:', src_fil_r.active)
-
-msg_1 = src_fil_r.import_variable('msg_1')
-print(msg_1)
-
-msg_2 = src_fil_r.import_variable('msg_2')
-print(msg_2)
-
-print('active:', src_fil_r.active)
-src_fil_r.close()
-print('active:', src_fil_r.active)
-
-print("end launcher")
-