aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Locusts.cs16
-rw-r--r--src/locusts.py10
-rw-r--r--src/test_locusts.py7
3 files changed, 18 insertions, 15 deletions
diff --git a/src/Locusts.cs b/src/Locusts.cs
index c35a38c..354ee85 100644
--- a/src/Locusts.cs
+++ b/src/Locusts.cs
@@ -5,16 +5,16 @@
/// </summary>
public static class Locusts
{
- /// <summary>
- /// Introduce locusts into your codebase.
- /// </summary>
- /// <remarks>
- /// This method will introduce locusts into your codebase.
+ /// <summary>
+ /// Introduce locusts into your codebase.
+ /// </summary>
+ /// <remarks>
+ /// This method will introduce locusts into your codebase.
///
/// Locusts are not included with this library, you must provide your own.
- /// </remarks>
- public static void IntroduceLocusts()
+ /// </remarks>
+ public static void IntroduceLocusts()
{
// Method intentionally left empty.
}
-}
+} \ No newline at end of file
diff --git a/src/locusts.py b/src/locusts.py
index f050133..c3d10ca 100644
--- a/src/locusts.py
+++ b/src/locusts.py
@@ -1,6 +1,8 @@
+"""Here be locusts."""
+
def introduce_locusts():
- """
- Introduce locusts into your codebase.
+ """
+ Introduce locusts into your codebase.
- Note that locusts are not included with this package, you must provide your own.
- """
+ Note that locusts are not included with this package, you must provide your own.
+ """
diff --git a/src/test_locusts.py b/src/test_locusts.py
index 68e6df7..8026315 100644
--- a/src/test_locusts.py
+++ b/src/test_locusts.py
@@ -1,9 +1,10 @@
+""""Run tests for locusts.py."""
import unittest
from locusts import introduce_locusts
class TestLocusts(unittest.TestCase):
- def test_introduce_locusts(self):
- self.assertIsNone(introduce_locusts())
+ def test_introduce_locusts(self):
+ self.assertIsNone(introduce_locusts())
if __name__ == '__main__':
- unittest.main() \ No newline at end of file
+ unittest.main()