예제 #1
0
    def test_examples_action(self):
        ''' examples action test '''

        Controller.examples_action()
        pass
예제 #2
0
    def test_update_action(self):
        ''' update action test '''

        Controller.update_action()
        pass
예제 #3
0
    def test_version_action(self):
        ''' version action test '''

        Controller.version_action()
        pass
예제 #4
0
    def test_url_action(self):
        ''' url action test '''

        Controller.url_action(None)
        pass
예제 #5
0
#    OpenDoor Web Directory Scanner
#    Copyright (C) 2016  Stanislav Menshov
#
#    This program is free software: you can redistribute it and/or modify
#    it under the terms of the GNU General Public License as published by
#    the Free Software Foundation, either version 3 of the License.
#
#    This program is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#    GNU General Public License for more details.
#
#    You should have received a copy of the GNU General Public License
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
#    Development Team: Stanislav Menshov (Stanislav WEB)

from Libraries import Command, Filter as FilterArgs, Controller, Version;

version = Version();
command = Command();
filter_args = FilterArgs();
args = []

version.banner();

if command.get_arg_values():
    args = filter_args.call(command)
    Controller(args)
예제 #6
0
 def test_update_action(self):
     Controller.update_action()
     pass
예제 #7
0
 def test_examples_action(self):
     Controller.examples_action()
     pass
예제 #8
0
 def test_url_action(self):
     Controller.url_action(None)
     pass
예제 #9
0
 def test_version_action(self):
     Controller.version_action()
     pass