micro_test 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/mt +9 -5
- metadata +1 -1
data/bin/mt
CHANGED
@@ -71,12 +71,16 @@ if MicroTest::PRY
|
|
71
71
|
|
72
72
|
puts
|
73
73
|
puts "".ljust(80, "-")
|
74
|
-
puts "|
|
74
|
+
puts "|".ljust(79) + "|"
|
75
|
+
puts "| #{MicroTest::Runner.current_test} #{red "FAIL"} ... Pry session started".ljust(88) + "|"
|
76
|
+
puts "|".ljust(79) + "|"
|
75
77
|
puts "".ljust(80, "-")
|
76
|
-
puts "| Type #{yellow "line"} to see the line that failed
|
77
|
-
puts "|
|
78
|
-
puts "| #{
|
79
|
-
puts "
|
78
|
+
puts "| Type #{yellow "line"} to see the line that failed".ljust(88) + "|"
|
79
|
+
puts "| #{blue "whereami 10"} for more context".ljust(88) + "|"
|
80
|
+
puts "| #{blue "edit-method"} to make the fix".ljust(88) + "|"
|
81
|
+
# puts "".ljust(80, "-")
|
82
|
+
puts "|".ljust(79) + "|"
|
83
|
+
puts "| Type #{yellow "exit"} or #{blue "<CTL-D>"} to continue".ljust(97) + "|"
|
80
84
|
puts "".ljust(80, "-")
|
81
85
|
puts
|
82
86
|
end
|