rakedotnet 1.1.51 → 1.1.53
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/nunit.rb +1 -1
- data/spec/nunit_spec.rb +10 -10
- metadata +17 -10
- checksums.yaml +0 -15
data/lib/nunit.rb
CHANGED
data/spec/nunit_spec.rb
CHANGED
@@ -9,7 +9,7 @@ describe BradyW::Nunit do
|
|
9
9
|
test.files = ["file1.dll", "file2.dll"]
|
10
10
|
end
|
11
11
|
task.exectaskpublic
|
12
|
-
task.excecutedPop.should == "\"C:\\Program Files (x86)\\NUnit 2.6.
|
12
|
+
task.excecutedPop.should == "\"C:\\Program Files (x86)\\NUnit 2.6.3\\bin\\nunit-console.exe\" /labels /noxml /framework=4.5 /timeout=35000 file1.dll file2.dll"
|
13
13
|
end
|
14
14
|
|
15
15
|
it 'doesnt test duplicate files' do
|
@@ -17,7 +17,7 @@ describe BradyW::Nunit do
|
|
17
17
|
test.files = ["file1.dll", "file1.dll"]
|
18
18
|
end
|
19
19
|
task.exectaskpublic
|
20
|
-
task.excecutedPop.should == "\"C:\\Program Files (x86)\\NUnit 2.6.
|
20
|
+
task.excecutedPop.should == "\"C:\\Program Files (x86)\\NUnit 2.6.3\\bin\\nunit-console.exe\" /labels /noxml /framework=4.5 /timeout=35000 file1.dll"
|
21
21
|
end
|
22
22
|
|
23
23
|
it 'uses NUnit 2.6.1' do
|
@@ -44,7 +44,7 @@ describe BradyW::Nunit do
|
|
44
44
|
test.timeout = 25
|
45
45
|
end
|
46
46
|
task.exectaskpublic
|
47
|
-
task.excecutedPop.should == "\"C:\\Program Files (x86)\\NUnit 2.6.
|
47
|
+
task.excecutedPop.should == "\"C:\\Program Files (x86)\\NUnit 2.6.3\\bin\\nunit-console.exe\" /labels /noxml /framework=4.5 /timeout=25 file1.dll file2.dll"
|
48
48
|
end
|
49
49
|
|
50
50
|
it 'uses .NET 3.5' do
|
@@ -53,7 +53,7 @@ describe BradyW::Nunit do
|
|
53
53
|
test.framework_version = :v3_5
|
54
54
|
end
|
55
55
|
task.exectaskpublic
|
56
|
-
task.excecutedPop.should == "\"C:\\Program Files (x86)\\NUnit 2.6.
|
56
|
+
task.excecutedPop.should == "\"C:\\Program Files (x86)\\NUnit 2.6.3\\bin\\nunit-console.exe\" /labels /noxml /framework=3.5 /timeout=35000 file1.dll file2.dll"
|
57
57
|
end
|
58
58
|
|
59
59
|
it 'can handle a single specific test to run' do
|
@@ -63,7 +63,7 @@ describe BradyW::Nunit do
|
|
63
63
|
end
|
64
64
|
|
65
65
|
task.exectaskpublic
|
66
|
-
task.excecutedPop.should == "\"C:\\Program Files (x86)\\NUnit 2.6.
|
66
|
+
task.excecutedPop.should == "\"C:\\Program Files (x86)\\NUnit 2.6.3\\bin\\nunit-console.exe\" /labels /noxml /framework=4.5 /timeout=35000 /run=some.test file1.dll file2.dll"
|
67
67
|
end
|
68
68
|
|
69
69
|
it 'can handle a multiple specific tests to run' do
|
@@ -73,7 +73,7 @@ describe BradyW::Nunit do
|
|
73
73
|
end
|
74
74
|
|
75
75
|
task.exectaskpublic
|
76
|
-
task.excecutedPop.should == "\"C:\\Program Files (x86)\\NUnit 2.6.
|
76
|
+
task.excecutedPop.should == "\"C:\\Program Files (x86)\\NUnit 2.6.3\\bin\\nunit-console.exe\" /labels /noxml /framework=4.5 /timeout=35000 /run=some.test,some.other.test file1.dll file2.dll"
|
77
77
|
end
|
78
78
|
|
79
79
|
it 'should work OK if XML output is turned on' do
|
@@ -82,7 +82,7 @@ describe BradyW::Nunit do
|
|
82
82
|
test.xml_output = :enabled
|
83
83
|
end
|
84
84
|
task.exectaskpublic
|
85
|
-
task.excecutedPop.should == "\"C:\\Program Files (x86)\\NUnit 2.6.
|
85
|
+
task.excecutedPop.should == "\"C:\\Program Files (x86)\\NUnit 2.6.3\\bin\\nunit-console.exe\" /labels /framework=4.5 /timeout=35000 file1.dll file2.dll"
|
86
86
|
|
87
87
|
end
|
88
88
|
|
@@ -92,7 +92,7 @@ describe BradyW::Nunit do
|
|
92
92
|
test.labels = :exclude_labels
|
93
93
|
end
|
94
94
|
task.exectaskpublic
|
95
|
-
task.excecutedPop.should == "\"C:\\Program Files (x86)\\NUnit 2.6.
|
95
|
+
task.excecutedPop.should == "\"C:\\Program Files (x86)\\NUnit 2.6.3\\bin\\nunit-console.exe\" /noxml /framework=4.5 /timeout=35000 file1.dll file2.dll"
|
96
96
|
|
97
97
|
end
|
98
98
|
|
@@ -103,7 +103,7 @@ describe BradyW::Nunit do
|
|
103
103
|
test.errors = "someerrorfile.txt"
|
104
104
|
end
|
105
105
|
task.exectaskpublic
|
106
|
-
task.excecutedPop.should == "\"C:\\Program Files (x86)\\NUnit 2.6.
|
106
|
+
task.excecutedPop.should == "\"C:\\Program Files (x86)\\NUnit 2.6.3\\bin\\nunit-console.exe\" /output=somefile.txt /err=someerrorfile.txt /labels /noxml /framework=4.5 /timeout=35000 file1.dll file2.dll"
|
107
107
|
end
|
108
108
|
|
109
109
|
it 'Should work OK with x86 arch' do
|
@@ -112,7 +112,7 @@ describe BradyW::Nunit do
|
|
112
112
|
test.arch = :x86
|
113
113
|
end
|
114
114
|
task.exectaskpublic
|
115
|
-
task.excecutedPop.should == "\"C:\\Program Files (x86)\\NUnit 2.6.
|
115
|
+
task.excecutedPop.should == "\"C:\\Program Files (x86)\\NUnit 2.6.3\\bin\\nunit-console-x86.exe\" /labels /noxml /framework=4.5 /timeout=35000 file1.dll file2.dll"
|
116
116
|
|
117
117
|
end
|
118
118
|
end
|
metadata
CHANGED
@@ -1,18 +1,20 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rakedotnet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.53
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- Brady Wied
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date: 2013-
|
12
|
+
date: 2013-11-13 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: windows-pr
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
16
18
|
requirements:
|
17
19
|
- - ! '>='
|
18
20
|
- !ruby/object:Gem::Version
|
@@ -20,6 +22,7 @@ dependencies:
|
|
20
22
|
type: :runtime
|
21
23
|
prerelease: false
|
22
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
23
26
|
requirements:
|
24
27
|
- - ! '>='
|
25
28
|
- !ruby/object:Gem::Version
|
@@ -31,8 +34,10 @@ executables: []
|
|
31
34
|
extensions: []
|
32
35
|
extra_rdoc_files: []
|
33
36
|
files:
|
34
|
-
- lib/
|
37
|
+
- lib/TODO-publish.rb
|
38
|
+
- lib/TODO-settingsfiles.rb
|
35
39
|
- lib/base_config.rb
|
40
|
+
- lib/basetask.rb
|
36
41
|
- lib/bcp.rb
|
37
42
|
- lib/config.rb
|
38
43
|
- lib/database.rb
|
@@ -45,13 +50,11 @@ files:
|
|
45
50
|
- lib/nunit.rb
|
46
51
|
- lib/registry_accessor.rb
|
47
52
|
- lib/sqlcmd.rb
|
48
|
-
- lib/TODO-publish.rb
|
49
|
-
- lib/TODO-settingsfiles.rb
|
50
53
|
- lib/tools.rb
|
51
54
|
- lib/windowspaths.rb
|
52
55
|
- spec/base.rb
|
53
|
-
- spec/basetaskmocking.rb
|
54
56
|
- spec/basetask_spec.rb
|
57
|
+
- spec/basetaskmocking.rb
|
55
58
|
- spec/bcp_spec.rb
|
56
59
|
- spec/config_spec.rb
|
57
60
|
- spec/config_testdata/defaultpartialuser_default.rb
|
@@ -72,7 +75,6 @@ files:
|
|
72
75
|
homepage: https://github.com/wied03/Rake.NET
|
73
76
|
licenses:
|
74
77
|
- BSD
|
75
|
-
metadata: {}
|
76
78
|
post_install_message:
|
77
79
|
rdoc_options:
|
78
80
|
- --inline-source
|
@@ -80,25 +82,30 @@ rdoc_options:
|
|
80
82
|
require_paths:
|
81
83
|
- lib
|
82
84
|
required_ruby_version: !ruby/object:Gem::Requirement
|
85
|
+
none: false
|
83
86
|
requirements:
|
84
87
|
- - ! '>='
|
85
88
|
- !ruby/object:Gem::Version
|
86
89
|
version: '0'
|
90
|
+
segments:
|
91
|
+
- 0
|
92
|
+
hash: 78227580219478976
|
87
93
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
94
|
+
none: false
|
88
95
|
requirements:
|
89
96
|
- - ! '>='
|
90
97
|
- !ruby/object:Gem::Version
|
91
98
|
version: '0'
|
92
99
|
requirements: []
|
93
100
|
rubyforge_project:
|
94
|
-
rubygems_version:
|
101
|
+
rubygems_version: 1.8.25
|
95
102
|
signing_key:
|
96
|
-
specification_version:
|
103
|
+
specification_version: 3
|
97
104
|
summary: Rake tasks for building .NET projects
|
98
105
|
test_files:
|
99
106
|
- spec/base.rb
|
100
|
-
- spec/basetaskmocking.rb
|
101
107
|
- spec/basetask_spec.rb
|
108
|
+
- spec/basetaskmocking.rb
|
102
109
|
- spec/bcp_spec.rb
|
103
110
|
- spec/config_spec.rb
|
104
111
|
- spec/config_testdata/defaultpartialuser_default.rb
|
checksums.yaml
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
---
|
2
|
-
!binary "U0hBMQ==":
|
3
|
-
metadata.gz: !binary |-
|
4
|
-
ZTBkMjg0MzBiZjBlOGU0NjY0ZTUxM2I3NDJjZTBiMDI5YTA5NGZjNg==
|
5
|
-
data.tar.gz: !binary |-
|
6
|
-
MDA3OGUzOGM4ZTU5Y2ZmMGZhNzVhMjM5MjIzMjBjMWE5ZjQyYmViMQ==
|
7
|
-
!binary "U0hBNTEy":
|
8
|
-
metadata.gz: !binary |-
|
9
|
-
ZTcwYzVjNzFmODkwNDc2ZjEwMzJlODhlOWYwOGY3MjZjODc3NjJjMGRjYjEz
|
10
|
-
YWJmM2QwOGM2YjRjZGI0Y2VjMzNhMGVjZmUzNDVkYmRlOWUyZmM0Mjc4OTQ2
|
11
|
-
MTc4NTY5ODlmNzFlOTQ5MTlhZjFkNTdlOTI3NjdmM2I0YTEyYTc=
|
12
|
-
data.tar.gz: !binary |-
|
13
|
-
MDgxYjBlZWQ1M2NmNWEzOWNkM2VlZGNiM2M1ZDZhNjU2ZGVhOGE1ZTlhYzEw
|
14
|
-
YTMxNTgwOWI3YzFkMDFkNTc4NDFiZDdlNmFmYTRjMzMzYWU0Zjg1OTMxN2Fi
|
15
|
-
ZjgwZDIwMGE5N2U2MDhjM2E4NDA2MzM5OTQ3MTQ3MTRkMTg3MzU=
|