Pārlūkot izejas kodu

Stop using test function to get window instance

Kentaro Wada 1 gadu atpakaļ
vecāks
revīzija
7ba1b0c839
1 mainītis faili ar 3 papildinājumiem un 4 dzēšanām
  1. 3 4
      tests/labelme_tests/test_app.py

+ 3 - 4
tests/labelme_tests/test_app.py

@@ -55,8 +55,7 @@ def test_MainWindow_open_json(qtbot):
         win.close()
         win.close()
 
 
 
 
-@pytest.mark.gui
-def test_MainWindow_open_dir(qtbot):
+def create_MainWindow_with_directory(qtbot):
     directory = osp.join(data_dir, "raw")
     directory = osp.join(data_dir, "raw")
     win = labelme.app.MainWindow(filename=directory)
     win = labelme.app.MainWindow(filename=directory)
     qtbot.addWidget(win)
     qtbot.addWidget(win)
@@ -66,13 +65,13 @@ def test_MainWindow_open_dir(qtbot):
 
 
 @pytest.mark.gui
 @pytest.mark.gui
 def test_MainWindow_openNextImg(qtbot):
 def test_MainWindow_openNextImg(qtbot):
-    win = test_MainWindow_open_dir(qtbot)
+    win = create_MainWindow_with_directory(qtbot)
     win.openNextImg()
     win.openNextImg()
 
 
 
 
 @pytest.mark.gui
 @pytest.mark.gui
 def test_MainWindow_openPrevImg(qtbot):
 def test_MainWindow_openPrevImg(qtbot):
-    win = test_MainWindow_open_dir(qtbot)
+    win = create_MainWindow_with_directory(qtbot)
     win.openNextImg()
     win.openNextImg()