diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-03-13 21:40:56 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-03-13 21:40:56 -0400 |
commit | 8c1e01886853471d8dadd473f491f310937b01d0 (patch) | |
tree | f41bf6a8699495575640d0d8fda37d45d0e4d056 /tests/conftest.py | |
parent | 8b0505c5ccdc7516572afe1426d82666f97232af (diff) | |
download | cmd2-git-8c1e01886853471d8dadd473f491f310937b01d0.tar.gz |
Mostly fix a bunch of spelling mistakes.
A few other miscellaneous minor tweaks for whitespace and such.
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index 8bc11497..6f3131e7 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,9 +1,10 @@ # coding=utf-8 -# -# Cmd2 unit/functional testing -# -# Copyright 2016 Federico Ceratto <federico.ceratto@gmail.com> -# Released under MIT license, see LICENSE file +""" +Cmd2 unit/functional testing + +Copyright 2016 Federico Ceratto <federico.ceratto@gmail.com> +Released under MIT license, see LICENSE file +""" import sys from pytest import fixture @@ -83,7 +84,7 @@ timing: False # Report execution times class StdOut(object): - """ Toy class for replacing self.stdout in cmd2.Cmd instances fror unit testing. """ + """ Toy class for replacing self.stdout in cmd2.Cmd instances for unit testing. """ def __init__(self): self.buffer = '' |