summaryrefslogtreecommitdiff
path: root/tests/data/views.py
blob: 4d9df0214eb7846c6426276974bfcac17b9c25b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# coding: utf-8

from pystache import TemplateSpec

class SayHello(object):

    def to(self):
        return "World"


class SampleView(TemplateSpec):
    pass


class NonAscii(TemplateSpec):
    pass