6
6
7
7
import pytest
8
8
import src .machine .main as machine
9
- import src .translator as translator
9
+ import src .translator . main as translator
10
10
11
11
12
12
@pytest .mark .golden_test ("golden/*.yml" )
@@ -25,15 +25,15 @@ def test_translator_and_machine(golden, caplog):
25
25
f .write (golden ["in_stdin" ])
26
26
27
27
with contextlib .redirect_stdout (io .StringIO ()) as stdout :
28
- translator .main (source , target_data , target_code )
28
+ translator .main (source , target_code , target_data )
29
29
print ("============================================================" )
30
- machine (target_code , target_data , input_stream )
30
+ machine . main (target_code , target_data , input_stream )
31
31
32
- with open (target_code , mode = "rb " ) as f :
33
- code = str ( f .read (), encoding = "utf-8" )
32
+ with open (target_code , encoding = "utf-8 " ) as f :
33
+ code = f .read ()
34
34
35
- with open (target_data , mode = "rb " ) as f :
36
- data = str ( f .read (), encoding = "utf-8" )
35
+ with open (target_data , encoding = "utf-8 " ) as f :
36
+ data = f .read ()
37
37
38
38
assert data == golden .out ["out_data" ]
39
39
assert code == golden .out ["out_code" ]
0 commit comments