dev 1.0.213 → 1.0.214
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/dev/cmd/Test.rb +1 -1
- metadata +1 -1
data/lib/dev/cmd/Test.rb
CHANGED
@@ -21,7 +21,7 @@ class Test < Array
|
|
21
21
|
self << "{:cmd=> '<paths,nunitx86> /xml:#{dll_name}.nunit-results.xml #{dll_name}', :auto=>true, :capture_output=>true, :capture_error=>true}" if RUBY_PLATFORM.include?("w32")
|
22
22
|
self << "{:cmd-> 'mono <paths,nunitx86> #{dll_name}', :auto=>true}" if !RUBY_PLATFORM.include?("w32")
|
23
23
|
else
|
24
|
-
self << "{:cmd=> '
|
24
|
+
self << "{:cmd=> '#{DEV[:paths][:nunit]} /xml:#{dll_name}.nunit-results.xml #{dll_name}', :auto=>true, :capture_output=>true, :capture_error=>true}" if RUBY_PLATFORM.include?("w32")
|
25
25
|
self << "{:cmd-> 'mono <paths,nunit> #{dll_name}', :auto=>true}" if !RUBY_PLATFORM.include?("w32")
|
26
26
|
end
|
27
27
|
}
|