Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .idea/Spring_2018_WICC_OSC.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

462 changes: 462 additions & 0 deletions .idea/workspace.xml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/bestBathroom.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#Return 'Gates Hall' because gates has the best bathrooms
def best_bathroom():
pass
return 'Gates Hall'
5 changes: 4 additions & 1 deletion src/calcSum.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#Return the sum of the numbers in the list
def calc_sum(nums):
pass
theSum = 0
for i in nums:
theSum = theSum + i
return theSum
5 changes: 2 additions & 3 deletions testing/bestBathroom_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
import os
import sys
cwd = os.getcwd()
sys.path.append(cwd + '/../src')


sys.path.append(cwd + '/../src/')
#/home/sohesh/Desktop/pyhton_github/Spring_2018_WICC_OSC/src/bestBathroom.py
import bestBathroom

class bestBathroomTest(unittest.TestCase):
Expand Down