summaryrefslogtreecommitdiffstats
path: root/ExampleAssessments
diff options
context:
space:
mode:
authorjwansek <eddie.atten.ea29@gmail.com>2021-11-15 19:46:31 +0000
committerjwansek <eddie.atten.ea29@gmail.com>2021-11-15 19:46:31 +0000
commitd262c125550dfb952abeb1c953731f470c52decd (patch)
tree9b46fae13dbf589f8a7165ccb133794c97d049cf /ExampleAssessments
parent4a0b15e2aba519d184f36f330a7b4af05bc2fd7d (diff)
downloadSmarker-d262c125550dfb952abeb1c953731f470c52decd.tar.gz
Smarker-d262c125550dfb952abeb1c953731f470c52decd.zip
made a start on analysis
Diffstat (limited to 'ExampleAssessments')
-rw-r--r--ExampleAssessments/CMP-4009B.yml6
-rw-r--r--ExampleAssessments/smol.yml21
2 files changed, 26 insertions, 1 deletions
diff --git a/ExampleAssessments/CMP-4009B.yml b/ExampleAssessments/CMP-4009B.yml
index 373f7f4..571c97f 100644
--- a/ExampleAssessments/CMP-4009B.yml
+++ b/ExampleAssessments/CMP-4009B.yml
@@ -17,8 +17,12 @@ files:
- tester.py:
functions:
- dateTester(2)
+ printIfExecuted: False
- turbine.py:
classes:
- Turbine:
attributes:
- - rating:int \ No newline at end of file
+ - rating:int
+ - aNonExistantModule.py:
+ functions:
+ - aNonExistantFunction(1) \ No newline at end of file
diff --git a/ExampleAssessments/smol.yml b/ExampleAssessments/smol.yml
new file mode 100644
index 0000000..d53e721
--- /dev/null
+++ b/ExampleAssessments/smol.yml
@@ -0,0 +1,21 @@
+files:
+ - pjtool.py:
+ classes:
+ - Date:
+ methods:
+ - __init__(4)
+ - __str__(1)
+ - __eq__(2)
+ - __lt__(2)
+ - numYears(2)
+ - numMonths(2)
+ - AnotherClass:
+ - floofleBerries(2)
+ tests:
+ - |
+ d1 = Date(2001, 8, 12)
+ d2 = Date(2001, 8, 12)
+ return d1 == d2
+ - aNonExistantModule.py:
+ functions:
+ - aNonExistantFunction(1) \ No newline at end of file