コード例 #1
0
    def test_sets_renderer(self):
        result = json_view()

        assert result['renderer'] == 'json'
コード例 #2
0
ファイル: view_test.py プロジェクト: chinmaygghag/h
    def test_allows_overriding_renderer(self):
        result = json_view(renderer='h:some/template.json.jinja2')

        assert result['renderer'] == 'h:some/template.json.jinja2'
コード例 #3
0
    def test_sets_accept(self):
        result = json_view()

        assert result['accept'] == 'application/json'
コード例 #4
0
ファイル: view_test.py プロジェクト: chinmaygghag/h
    def test_passes_through_other_kwargs(self):
        result = json_view(foo='bar', baz='qux')

        assert result['foo'] == 'bar'
        assert result['baz'] == 'qux'
コード例 #5
0
ファイル: view_test.py プロジェクト: chinmaygghag/h
    def test_allows_overriding_accept(self):
        result = json_view(accept='application/ld+json')

        assert result['accept'] == 'application/ld+json'
コード例 #6
0
ファイル: view_test.py プロジェクト: chinmaygghag/h
    def test_sets_accept(self):
        result = json_view()

        assert result['accept'] == 'application/json'
コード例 #7
0
ファイル: view_test.py プロジェクト: chinmaygghag/h
    def test_sets_renderer(self):
        result = json_view()

        assert result['renderer'] == 'json'
コード例 #8
0
ファイル: view_test.py プロジェクト: hypothesis/h
    def test_allows_overriding_renderer(self):
        result = json_view(renderer="h:some/template.json.jinja2")

        assert result["renderer"] == "h:some/template.json.jinja2"
コード例 #9
0
ファイル: view_test.py プロジェクト: hypothesis/h
    def test_allows_overriding_accept(self):
        result = json_view(accept="application/ld+json")

        assert result["accept"] == "application/ld+json"
コード例 #10
0
ファイル: view_test.py プロジェクト: hypothesis/h
    def test_passes_through_other_kwargs(self):
        result = json_view(foo="bar", baz="qux")

        assert result["foo"] == "bar"
        assert result["baz"] == "qux"
コード例 #11
0
ファイル: view_test.py プロジェクト: hypothesis/h
    def test_sets_renderer(self):
        result = json_view()

        assert result["renderer"] == "json"
コード例 #12
0
ファイル: view_test.py プロジェクト: hypothesis/h
    def test_sets_accept(self):
        result = json_view()

        assert result["accept"] == "application/json"