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

11 lines
211 B
Python

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