@@ -36,9 +36,9 @@ class Test < ActiveSupport::TestCase
36
36
# The first 3 responses are for the test class.
37
37
# The last 3 are for the test declaration.
38
38
assert_equal ( 6 , response . size )
39
- assert_match ( "Run" , response [ 3 ] . command . title )
39
+ assert_match ( "▶ Run" , response [ 3 ] . command . title )
40
40
assert_match ( %r{(ruby )?bin/rails test /fake\. rb:2} , response [ 3 ] . command . arguments [ 2 ] )
41
- assert_match ( "Run In Terminal" , response [ 4 ] . command . title )
41
+ assert_match ( "▶ Run In Terminal" , response [ 4 ] . command . title )
42
42
assert_match ( "Debug" , response [ 5 ] . command . title )
43
43
end
44
44
@@ -54,9 +54,9 @@ class Test < ActiveSupport::TestCase
54
54
# The first 3 responses are for the test class.
55
55
# The last 3 are for the test declaration.
56
56
assert_equal ( 6 , response . size )
57
- assert_match ( "Run" , response [ 3 ] . command . title )
57
+ assert_match ( "▶ Run" , response [ 3 ] . command . title )
58
58
assert_match ( %r{(ruby )?bin/rails test /fake\. rb:2} , response [ 3 ] . command . arguments [ 2 ] )
59
- assert_match ( "Run In Terminal" , response [ 4 ] . command . title )
59
+ assert_match ( "▶ Run In Terminal" , response [ 4 ] . command . title )
60
60
assert_match ( "Debug" , response [ 5 ] . command . title )
61
61
end
62
62
@@ -73,9 +73,9 @@ class Test < ActiveSupport::TestCase
73
73
# The first 3 responses are for the test class.
74
74
# The last 3 are for the test declaration.
75
75
assert_equal ( 6 , response . size )
76
- assert_match ( "Run" , response [ 3 ] . command . title )
76
+ assert_match ( "▶ Run" , response [ 3 ] . command . title )
77
77
assert_match ( %r{(ruby )?bin/rails test /fake\. rb:2} , response [ 3 ] . command . arguments [ 2 ] )
78
- assert_match ( "Run In Terminal" , response [ 4 ] . command . title )
78
+ assert_match ( "▶ Run In Terminal" , response [ 4 ] . command . title )
79
79
assert_match ( "Debug" , response [ 5 ] . command . title )
80
80
end
81
81
@@ -144,9 +144,9 @@ def test_example
144
144
# The first 3 responses are for the test declaration.
145
145
# The last 3 are for the test class.
146
146
assert_equal ( 6 , response . size )
147
- assert_match ( "Run" , response [ 3 ] . command . title )
147
+ assert_match ( "▶ Run" , response [ 3 ] . command . title )
148
148
assert_match ( %r{(ruby )?bin/rails test /fake\. rb:2} , response [ 3 ] . command . arguments [ 2 ] )
149
- assert_match ( "Run In Terminal" , response [ 4 ] . command . title )
149
+ assert_match ( "▶ Run In Terminal" , response [ 4 ] . command . title )
150
150
assert_match ( "Debug" , response [ 5 ] . command . title )
151
151
end
152
152
@@ -301,7 +301,7 @@ def change
301
301
RUBY
302
302
303
303
assert_equal ( 1 , response . size )
304
- assert_match ( "Run" , response [ 0 ] . command . title )
304
+ assert_match ( "▶ Run" , response [ 0 ] . command . title )
305
305
assert_match ( "#{ ruby } bin/rails db:migrate VERSION=123456" , response [ 0 ] . command . arguments [ 0 ] )
306
306
end
307
307
0 commit comments