File: sdl2ext_algorithms_test.py

package info (click to toggle)
pysdl2 0.9.7%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,824 kB
  • sloc: python: 17,244; makefile: 195; sh: 32
file content (22 lines) | stat: -rw-r--r-- 433 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import sys
import pytest
from sdl2.ext import algorithms


class TestSDL2ExtAlgorithms(object):
    __tags__ = ["sdl2ext"]

    @pytest.mark.skip("not implemented")
    def test_cohensutherland(self):
        pass

    @pytest.mark.skip("not implemented")
    def test_liangbarsky(self):
        pass

    @pytest.mark.skip("not implemented")
    def test_clipline(self):
        pass

    def test_point_on_line(self):
        pass