Skip to content

Commit

Permalink
Added stubs for framework and loadtest modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Descent098 committed Aug 29, 2021
1 parent db992a4 commit 16b2d49
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ Features:
- Moved ```trace``` command code to ```trace``` module and simplified tracing code
- Added Bash autocomplete for ease of use on *nix systems
- Added ```domains``` module and command
- Added ```dns``` module and command
- Added ```downloads`` module to make handling downlaods simpler
- Added ```loadtest``` module and command
- - Added ```framework``` module and command
- Added ```framework``` module and command

Documentation Improvements:
- Added additional source, docs, and roadmap links to ```setup.py``` for PyPi
Expand Down
5 changes: 5 additions & 0 deletions sws/framework.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
"""A module to help extrapolate framework information of a url such as:
- What is used to build it (i.e. Wordpress, squarespace etc.)
- What version of a framework has been used to build it
- Information about the proxying system used"""
1 change: 1 addition & 0 deletions sws/loadtest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""A module to help quickly setup loadtesting for an application/service"""
7 changes: 7 additions & 0 deletions tests/framework_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
"""Testing the functionality of sws.framework"""

from sws.framework import *


def test_stuff():
...
7 changes: 7 additions & 0 deletions tests/loadtest_test .py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
"""Testing the functionality of sws.loadtest"""

from sws.loadtest import *


def test_stuff():
...

0 comments on commit 16b2d49

Please sign in to comment.