separate tests for dynamic
This commit is contained in:
parent
82d310ea76
commit
7b889a2350
12 changed files with 27 additions and 0 deletions
8
tests/test_hello_world.py
Normal file
8
tests/test_hello_world.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
from pyray import *
|
||||
init_window(800, 450, "Hello")
|
||||
while not window_should_close():
|
||||
begin_drawing()
|
||||
clear_background(WHITE)
|
||||
draw_text("Hello world", 190, 200, 20, VIOLET)
|
||||
end_drawing()
|
||||
close_window()
|
Reference in a new issue