예제 #1
0
파일: tests.py 프로젝트: wuzesheng/pygal
    def test_funnel():
        funnel = Funnel()

        funnel.add('1', [1, 2, 3])
        funnel.add('3', [3, 4, 5])
        funnel.add('6', [6, 5, 4])
        funnel.add('12', [12, 2, 9])

        return funnel.render_response()
예제 #2
0
파일: tests.py 프로젝트: fredtantini/pygal
    def test_funnel():
        funnel = Funnel()

        funnel.add('1', [1, 2, 3])
        funnel.add('3', [3, 4, 5])
        funnel.add('6', [6, 5, 4])
        funnel.add('12', [12, 2, 9])

        return funnel.render_response()
예제 #3
0
파일: tests.py 프로젝트: rnjdeltaYoda/pygal
    def test_funnel():
        funnel = Funnel()

        funnel.add("1", [1, 2, 3])
        funnel.add("3", [3, 4, 5])
        funnel.add("6", [6, 5, 4])
        funnel.add("12", [12, 2, 9])

        return funnel.render_response()