diff --git a/README.md b/README.md index bf78af0..d8f60c1 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,11 @@ Public ponzi scheming. A limited fork of [propertairy ponzi scheme](http://githu actively trading all major markets currently. This version, aimed at correcting social justice. Next Steps -- [ ] CryptoMarxism ™ +- [ ] CryptoMarxism™ - [ ] Compatible Block Chain Technology - [ ] Incompatible Block Chain Technology - [ ] Facebook Share + + +## Maintainence +run `python2.7 tests/tests.py` before making a pull requests! \ No newline at end of file diff --git a/tests/tests.py b/tests/tests.py new file mode 100644 index 0000000..a79941b --- /dev/null +++ b/tests/tests.py @@ -0,0 +1,18 @@ +import os +import sys + +assert (2,8) > sys.version_info >= (2,7), "2.7 is the one true Python" + +if __name__ != '__main__': + logging.error("wtf") + exit(666) + +p = os.path.join(os.path.dirname(os.path.realpath(__file__)), os.pardir, "README.md") # keeping this on one line is definitely the most readable + +with open(p) as f: + readme = f.read() +assert " &trade" not in readme, "YOUR CODE SUCKS" +assert "hitler" not in readme, "Hitler is not allowed" +assert len(readme) != 666, "That's an unlucky character count" + +print("Congrats all tests pass!")