dev 2.0.159 → 2.0.160
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/tasks/test.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 91114ec0da9dfbec0f2e8fd61af22dea9fa3ee46
|
4
|
+
data.tar.gz: 7083e6e874d6c5def8591f11334641f31904749b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3dbb1b5fc2c2633704885049ef5d4fe521202c93bbc5dee95e2f73df7bd0b4622273c369d4a408a75c6fb13a2a927cfeb9cb71fd06028c7815a53b306eebbb4
|
7
|
+
data.tar.gz: d69f86ab22c076448ee817be1424ad14bc452d6fe911f0d81f01da6702aa6d6bfc1fd151b3276a4618d676689784e1cc89ee4ed25924e8a6088e8bf480b35420
|
data/lib/tasks/test.rb
CHANGED
@@ -19,8 +19,8 @@ class Test < Array
|
|
19
19
|
NUNIT.each{|nunit_dll|
|
20
20
|
nunit_arg=Test.nunit_console
|
21
21
|
nunit_arg="\"#{Test.nunit_console}\"" if Test.nunit_console.include?(' ')
|
22
|
-
dll_arg=
|
23
|
-
dll_arg="\"#{
|
22
|
+
dll_arg=nunit_dll
|
23
|
+
dll_arg="\"#{nunit_dll}\"" if(nunit_dll.include?(' '))
|
24
24
|
xml_arg="/xml:#{nunit_dll}.TestResults.xml"
|
25
25
|
xml_arg="/xml:\"#{nunit_dll}.TestResults.xml\"" if(nunit_dll.include?(' '))
|
26
26
|
add "#{nunit_arg} #{dll_arg} #{xml_arg}"
|