@@ -30,7 +30,7 @@ const keydict = Dict(:up => "\e[A",
30
30
@test Cthulhu. default_terminal () isa REPL. Terminals. TTYTerminal
31
31
end
32
32
colorize (active_option:: Bool , c:: Char ) = Cthulhu. stringify () do io
33
- active_option ? printstyled (io, c; color= :green ) : printstyled (io, c; color= :red )
33
+ active_option ? printstyled (io, c; bold = true , color= :blue ) : printstyled (io, c; color= :magenta )
34
34
end
35
35
36
36
colorize (s:: AbstractString ; color:: Symbol = :cyan ) = Cthulhu. stringify () do io
@@ -69,14 +69,14 @@ const keydict = Dict(:up => "\e[A",
69
69
@test occursin (' [' * colorize (true , ' o' ) * " ]ptimize" , lines)
70
70
@test occursin (' [' * colorize (true , ' T' ) * " ]yped" , lines)
71
71
72
- @test occursin (' \n ' * colorize (" Select a call to descend into or ↩ to ascend. [q]uit. [b]ookmark." ; color = :blue ), lines) # beginning of the line
72
+ @test occursin (' \n ' * colorize (" Select a call to descend into or ↩ to ascend. [q]uit. [b]ookmark." ; color = :green ), lines) # beginning of the line
73
73
@test occursin (' •' , lines)
74
74
write (in, ' o' ) # switch to unoptimized
75
75
lines = cread (out)
76
76
@test occursin (" invoke simplef(::Float32,::Int32)::Float32" , lines)
77
77
@test occursin (r" \( z = a \* a\)\u 001B\[\d\d m::Float32\u 001B\[ 39m" , lines)
78
78
@test occursin (' [' * colorize (false , ' o' ) * " ]ptimize" , lines)
79
- @test occursin (' \n ' * colorize (" Select a call to descend into or ↩ to ascend. [q]uit. [b]ookmark." ; color = :blue ), lines) # beginning of the line
79
+ @test occursin (' \n ' * colorize (" Select a call to descend into or ↩ to ascend. [q]uit. [b]ookmark." ; color = :green ), lines) # beginning of the line
80
80
@test occursin (" • %1 = *(::Float32,::Float32)::Float32" , lines)
81
81
# Call selection
82
82
write (in, keydict[:down ])
@@ -108,7 +108,7 @@ const keydict = Dict(:up => "\e[A",
108
108
@test occursin (r" z.*::Float32" , lines)
109
109
@test occursin (r" \n Body.*Float32" , lines)
110
110
@test occursin (' [' * colorize (true , ' w' ) * " ]arn" , lines)
111
- @test occursin (' \n ' * colorize (" Select a call to descend into or ↩ to ascend. [q]uit. [b]ookmark." ; color = :blue ), lines) # beginning of the line
111
+ @test occursin (' \n ' * colorize (" Select a call to descend into or ↩ to ascend. [q]uit. [b]ookmark." ; color = :green ), lines) # beginning of the line
112
112
@test occursin (" • %1 = *(::Float32,::Float32)::Float32" , lines)
113
113
# Source view
114
114
write (in, ' S' )
0 commit comments