11 lines
256 B
Python
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()
|