diff --git a/.idea/Spring_2018_WICC_OSC.iml b/.idea/Spring_2018_WICC_OSC.iml new file mode 100644 index 0000000..6711606 --- /dev/null +++ b/.idea/Spring_2018_WICC_OSC.iml @@ -0,0 +1,11 @@ + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..12f37ed --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..e1b888a --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..e14d9d3 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,421 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1522347124572 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/bestBathroom.py b/src/bestBathroom.py index 13e6a71..07dfeb5 100644 --- a/src/bestBathroom.py +++ b/src/bestBathroom.py @@ -1,3 +1,3 @@ #Return 'Gates Hall' because gates has the best bathrooms def best_bathroom(): - pass + return 'Gates Hall' diff --git a/testing/bestBathroom_test.py b/testing/bestBathroom_test.py index 41c2e6c..ce9218e 100644 --- a/testing/bestBathroom_test.py +++ b/testing/bestBathroom_test.py @@ -2,9 +2,7 @@ import os import sys cwd = os.getcwd() -sys.path.append(cwd + '/../src') - - +sys.path.append(cwd + '/../src/') import bestBathroom class bestBathroomTest(unittest.TestCase):