예제 #1
0
파일: runner.py 프로젝트: fidothe/rgf
def main():
    formatter = ProgressFormatter(sys.stdout)
    reporter = Reporter(formatter)
    runner = Runner(reporter)
    suite = ExampleSuite.get_suite()

    return runner.run(suite, sys.argv[1])
예제 #2
0
파일: dsl.py 프로젝트: msabramo/rgf
def _get_current_example_group():
    return ExampleSuite.get_suite().get_current_example_group()
예제 #3
0
 def s(w):
     ExampleSuite.set_suite(w.suite)
     assert ExampleSuite.get_suite() is w.suite
예제 #4
0
 def s(w):
     assert type(ExampleSuite.get_suite()) is ExampleSuite
     assert ExampleSuite.get_suite() is ExampleSuite.get_suite()