# Copyright 2013 Lars Wirzenius # # 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, or # (at your option) any later version. # # 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/>. # # =*= License: GPL-3+ =*= # This is a step in a scenario: GIVEN, WHEN, THEN, etc. class ScenarioStep(object): def __init__(self, what, text): self.what = what self.text = text self.implementation = None # This is the scenario itself. class Scenario(object): def __init__(self, name): self.name = name self.steps = [] # This is an IMPLEMENTS chunk. class Implementation(object): def __init__(self, what, regexp, shell): self.what = what self.regexp = regexp self.shell = shell
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
__init__.py | File | 898 B | 0644 |
|
__init__.pyc | File | 489 B | 0644 |
|
block_parser.py | File | 4.76 KB | 0644 |
|
block_parser.pyc | File | 5.17 KB | 0644 |
|
block_parser_tests.py | File | 5.51 KB | 0644 |
|
block_parser_tests.pyc | File | 6.58 KB | 0644 |
|
elements.py | File | 1.21 KB | 0644 |
|
elements.pyc | File | 1.33 KB | 0644 |
|
mdparser.py | File | 2.49 KB | 0644 |
|
mdparser.pyc | File | 2.45 KB | 0644 |
|
mdparser_tests.py | File | 2.4 KB | 0644 |
|
mdparser_tests.pyc | File | 2.66 KB | 0644 |
|
version.py | File | 48 B | 0644 |
|
version.pyc | File | 223 B | 0644 |
|