Class: TestLauncher::Frameworks::Minitest::TestCase
Instance Attribute Summary
#file, #line_number, #request
Instance Method Summary
collapse
#app_root, #exploded_path, from_search, #initialize, #is_example?, #mtime, #relative_file, #test_root
Instance Method Details
#example ⇒ Object
168
169
170
171
|
# File 'lib/test_launcher/frameworks/minitest.rb', line 168
def example
@memoized_example if defined?(@memoized_example)
@memoized_example = @example&.gsub(" ", "_")
end
|
#example_runner ⇒ Object
136
137
138
139
140
141
142
|
# File 'lib/test_launcher/frameworks/minitest.rb', line 136
def example_runner
if spring_enabled?
"bundle exec spring rails test"
else
"bundle exec ruby -I test"
end
end
|
#file_runner ⇒ Object
144
145
146
147
148
149
150
|
# File 'lib/test_launcher/frameworks/minitest.rb', line 144
def file_runner
if spring_enabled?
"bundle exec spring rails test"
else
"bundle exec ruby -I test -e 'ARGV.each {|f| require(f)}'"
end
end
|
#spring_enabled? ⇒ Boolean
156
157
158
159
160
161
162
163
164
165
166
|
# File 'lib/test_launcher/frameworks/minitest.rb', line 156
def spring_enabled?
return false if request.disable_spring?
return true if request.force_spring?
[
"bin/spring",
"bin/testunit"
].any? {|f|
File.exist?(File.join(app_root, f))
}
end
|
#test_root_dir_name ⇒ Object
152
153
154
|
# File 'lib/test_launcher/frameworks/minitest.rb', line 152
def test_root_dir_name
"test"
end
|