S1005403_RisCC/tests/gui/test_waypoint_editor_window.py

11 lines
256 B
Python

import pytest
import tkinter as tk
from target_simulator.gui.waypoint_editor_window import WaypointEditorWindow
def test_waypoint_editor_window_init():
root = tk.Tk()
win = WaypointEditorWindow(root)
assert win is not None
root.destroy()