This repository has been archived on 2020-09-29. You can view files and clone it, but cannot push or open issues/pull-requests.
flatfilecms/tests/views.py

17 lines
341 B
Python

def test1(self):
self.context.page['content'] += ' View1'
def test2(self):
self.context.page['content'] += ' View2'
def test3(self, options):
self.context.page['content'] += \
f" View3(a:{options['a']}, b:{options['b']})"
def test4(self, options):
self.context.page['content'] += \
f" View4({options})"