albacore 0.0.9 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.markdown +84 -81
- data/VERSION +1 -1
- data/install_dependencies.rb +10 -10
- data/lib/albacore.rb +10 -2
- data/lib/albacore/assemblyinfo.rb +100 -100
- data/lib/albacore/assemblyinfolanguages/csharpengine.rb +14 -0
- data/lib/albacore/assemblyinfolanguages/vbnetengine.rb +14 -0
- data/lib/albacore/docu.rb +39 -0
- data/lib/albacore/exec.rb +23 -0
- data/lib/albacore/expandtemplates.rb +73 -71
- data/lib/albacore/msbuild.rb +56 -61
- data/lib/albacore/mspectestrunner.rb +44 -42
- data/lib/albacore/nant.rb +39 -0
- data/lib/albacore/ncoverconsole.rb +68 -61
- data/lib/albacore/ncoverreport.rb +56 -55
- data/lib/albacore/ncoverreports/assemblyfilter.rb +7 -7
- data/lib/albacore/ncoverreports/branchcoverage.rb +7 -7
- data/lib/albacore/ncoverreports/classfilter.rb +5 -5
- data/lib/albacore/ncoverreports/codecoveragebase.rb +22 -22
- data/lib/albacore/ncoverreports/cyclomaticcomplexity.rb +19 -19
- data/lib/albacore/ncoverreports/documentfilter.rb +5 -5
- data/lib/albacore/ncoverreports/fullcoveragereport.rb +17 -17
- data/lib/albacore/ncoverreports/methodcoverage.rb +7 -7
- data/lib/albacore/ncoverreports/methodfilter.rb +5 -5
- data/lib/albacore/ncoverreports/namespacefilter.rb +5 -5
- data/lib/albacore/ncoverreports/reportfilterbase.rb +23 -23
- data/lib/albacore/ncoverreports/summaryreport.rb +18 -18
- data/lib/albacore/ncoverreports/symbolcoverage.rb +6 -7
- data/lib/albacore/ndepend.rb +35 -0
- data/lib/albacore/nunittestrunner.rb +36 -35
- data/lib/albacore/plink.rb +48 -0
- data/lib/albacore/sftp.rb +33 -31
- data/lib/albacore/sqlcmd.rb +54 -51
- data/lib/albacore/ssh.rb +35 -33
- data/lib/albacore/support/albacore_helper.rb +1 -4
- data/lib/albacore/support/attrmethods.rb +25 -0
- data/lib/albacore/support/failure.rb +17 -17
- data/lib/albacore/support/globalconfig.rb +6 -0
- data/lib/albacore/support/logging.rb +30 -28
- data/lib/albacore/support/runcommand.rb +41 -41
- data/lib/albacore/support/yamlconfig.rb +23 -27
- data/lib/albacore/unzip.rb +28 -0
- data/lib/albacore/xbuild.rb +54 -0
- data/lib/albacore/xunittestrunner.rb +40 -43
- data/lib/albacore/zipdirectory.rb +72 -63
- data/lib/rake/assemblyinfotask.rb +12 -11
- data/lib/rake/docutask.rb +17 -0
- data/lib/rake/exectask.rb +18 -0
- data/lib/rake/expandtemplatestask.rb +12 -11
- data/lib/rake/msbuildtask.rb +13 -12
- data/lib/rake/mspectask.rb +12 -11
- data/lib/rake/nanttask.rb +17 -0
- data/lib/rake/ncoverconsoletask.rb +12 -11
- data/lib/rake/ncoverreporttask.rb +12 -11
- data/lib/rake/ndependtask.rb +23 -0
- data/lib/rake/nunittask.rb +12 -11
- data/lib/rake/plinktask.rb +23 -0
- data/lib/rake/renametask.rb +15 -15
- data/lib/rake/sftptask.rb +11 -10
- data/lib/rake/sqlcmdtask.rb +13 -12
- data/lib/rake/sshtask.rb +11 -10
- data/lib/rake/support/albacoretask.rb +16 -15
- data/lib/rake/unziptask.rb +17 -0
- data/lib/rake/xbuildtask.rb +22 -0
- data/lib/rake/xunittask.rb +12 -11
- data/lib/rake/ziptask.rb +12 -11
- data/rakefile.rb +255 -204
- data/spec/assemblyinfo_spec.rb +426 -221
- data/spec/assemblyinfotask_spec.rb +21 -21
- data/spec/docu_spec.rb +70 -0
- data/spec/docutask_spec.rb +39 -0
- data/spec/exec_spec.rb +23 -0
- data/spec/exectask_spec.rb +31 -0
- data/spec/expandtemplates_spec.rb +149 -148
- data/spec/expandtemplatestask_spec.rb +21 -21
- data/spec/msbuild_spec.rb +150 -139
- data/spec/msbuildtask_spec.rb +21 -21
- data/spec/mspectask_spec.rb +21 -21
- data/spec/nant_spec.rb +101 -0
- data/spec/nanttask_spec.rb +31 -0
- data/spec/ncoverconsole_spec.rb +253 -221
- data/spec/ncoverconsoletask_spec.rb +21 -21
- data/spec/ncoverreport_spec.rb +538 -523
- data/spec/ncoverreporttask_spec.rb +21 -21
- data/spec/ndepend_spec.rb +49 -0
- data/spec/{commandtask_spec.rb → ndependtask_spec.rb} +10 -10
- data/spec/nunittask_spec.rb +21 -21
- data/spec/nunittestrunner_spec.rb +6 -6
- data/spec/patches/docu_patch.rb +13 -0
- data/spec/patches/system_patch.rb +18 -18
- data/spec/patches/tasklib_patch.rb +10 -10
- data/spec/plink_spec.rb +61 -0
- data/spec/plinktask_spec.rb +31 -0
- data/spec/renametask_spec.rb +21 -21
- data/spec/sftp_spec.rb +24 -24
- data/spec/sftptask_spec.rb +31 -31
- data/spec/sqlcmd_spec.rb +118 -120
- data/spec/sqlcmdtask_spec.rb +21 -21
- data/spec/ssh_spec.rb +36 -37
- data/spec/sshtask_spec.rb +29 -29
- data/spec/support/TestSolution/NDependProject.xml +315 -0
- data/spec/support/TestSolution/TestSolution.XUnitTests/Class1.cs +12 -12
- data/spec/support/TestSolution/TestSolution.XUnitTests/FailingTestFixture.cs +14 -0
- data/spec/support/TestSolution/TestSolution.XUnitTests/TestSolution.XUnitTests.csproj +1 -0
- data/spec/support/TestSolution/TestSolution.build +25 -0
- data/spec/support/assemblyinfotester.rb +40 -38
- data/spec/support/expandtemplatestestdata.rb +73 -73
- data/spec/support/msbuildtestdata.rb +28 -28
- data/spec/support/nanttestdata.rb +33 -0
- data/spec/support/ncoverconsoletestdata.rb +18 -0
- data/spec/support/ncoverreporttestdata.rb +24 -24
- data/spec/support/spec_helper.rb +2 -1
- data/spec/support/yamlconfig/msbuild.yml +3 -0
- data/spec/support/yamlconfig/yaml_autoconfig_test.yml +1 -0
- data/spec/support/ziptestdata.rb +11 -6
- data/spec/xunit_spec.rb +63 -0
- data/spec/xunittask_spec.rb +19 -19
- data/spec/yamlconfig_spec.rb +38 -52
- data/spec/zip_spec.rb +56 -11
- data/spec/ziptask_spec.rb +22 -22
- metadata +53 -8
- data/lib/albacore/command.rb +0 -23
- data/lib/rake/commandtask.rb +0 -16
- data/spec/command_spec.rb +0 -23
data/spec/xunittask_spec.rb
CHANGED
@@ -4,28 +4,28 @@ require 'rake/xunittask'
|
|
4
4
|
require 'tasklib_patch'
|
5
5
|
|
6
6
|
describe Albacore::XUnitTask, "when running" do
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
7
|
+
before :all do
|
8
|
+
task = Albacore::XUnitTask.new(:xunit) do |t|
|
9
|
+
@yielded_object = t
|
10
|
+
end
|
11
|
+
task.extend(TasklibPatch)
|
12
|
+
Rake::Task[:xunit].invoke
|
13
|
+
end
|
14
14
|
|
15
|
-
|
16
|
-
|
17
|
-
|
15
|
+
it "should yield the xunit api" do
|
16
|
+
@yielded_object.kind_of?(XUnitTestRunner).should be_true
|
17
|
+
end
|
18
18
|
end
|
19
19
|
|
20
20
|
describe Albacore::XUnitTask, "when execution fails" do
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
21
|
+
before :all do
|
22
|
+
@task = Albacore::XUnitTask.new(:failingtask)
|
23
|
+
@task.extend(TasklibPatch)
|
24
|
+
@task.fail
|
25
|
+
Rake::Task["failingtask"].invoke
|
26
|
+
end
|
27
27
|
|
28
|
-
|
29
|
-
|
30
|
-
|
28
|
+
it "should fail the rake task" do
|
29
|
+
@task.task_failed.should == true
|
30
|
+
end
|
31
31
|
end
|
data/spec/yamlconfig_spec.rb
CHANGED
@@ -2,61 +2,47 @@ require File.join(File.dirname(__FILE__), 'support', 'spec_helper')
|
|
2
2
|
require 'albacore/support/yamlconfig'
|
3
3
|
|
4
4
|
class YamlTest
|
5
|
-
|
6
|
-
|
5
|
+
include YAMLConfig
|
6
|
+
attr_accessor :some_name
|
7
7
|
end
|
8
8
|
|
9
9
|
describe YAMLConfig, "when configuring with yaml" do
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
10
|
+
before :all do
|
11
|
+
@yml = YamlTest.new
|
12
|
+
@yml.configure File.join(File.dirname(__FILE__), 'support', 'test.yml')
|
13
|
+
end
|
14
|
+
|
15
|
+
it "should set the value of some_name" do
|
16
|
+
@yml.some_name.should == "some value"
|
17
|
+
end
|
18
|
+
|
19
|
+
it "should create and set the value of another_name" do
|
20
|
+
@yml.another_name.should == "another value"
|
21
|
+
end
|
22
|
+
|
23
|
+
it "should allow hash tables" do
|
24
|
+
@yml.a_hash.length.should == 2
|
25
|
+
@yml.a_hash['name'].should == "value"
|
26
|
+
@yml.a_hash['foo'].should == "bar"
|
27
|
+
end
|
28
|
+
|
29
|
+
it "should allow symbols" do
|
30
|
+
@yml.what_ever.should == :a_symbol
|
31
|
+
end
|
32
32
|
end
|
33
33
|
|
34
|
-
describe YAMLConfig, "when
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
34
|
+
describe YAMLConfig, "when specifying a yaml config folder and configuring" do
|
35
|
+
class YAML_AutoConfig_Test
|
36
|
+
include YAMLConfig
|
37
|
+
end
|
38
|
+
|
39
|
+
before :all do
|
40
|
+
Albacore::yaml_config_folder = File.join(File.dirname(__FILE__), 'support', 'yamlconfig')
|
41
|
+
@yamltest = YAML_AutoConfig_Test.new
|
42
|
+
@yamltest.load_config_by_task_name("yaml_autoconfig_test")
|
43
|
+
end
|
44
|
+
|
45
|
+
it "should automatically configure the class from the yaml file in the specified folder" do
|
46
|
+
@yamltest.some_attribute.should == "this value was loaded from a folder, specified by Albacore::yaml_config_folder"
|
47
|
+
end
|
47
48
|
end
|
48
|
-
|
49
|
-
describe YAMLConfig, "when extending a class with yamlconfig" do
|
50
|
-
|
51
|
-
class YAML_AutoConfig_Test
|
52
|
-
end
|
53
|
-
|
54
|
-
before :all do
|
55
|
-
@yamltest = YAML_AutoConfig_Test.new
|
56
|
-
@yamltest.extend YAMLConfig
|
57
|
-
end
|
58
|
-
|
59
|
-
it "should automatically configure the class through a yaml file named after the class" do
|
60
|
-
@yamltest.this_attr_was_automatically_added_by.should == "the yaml auto config"
|
61
|
-
end
|
62
|
-
end
|
data/spec/zip_spec.rb
CHANGED
@@ -1,18 +1,63 @@
|
|
1
1
|
require File.join(File.dirname(__FILE__), 'support', 'spec_helper')
|
2
2
|
require 'albacore/zipdirectory'
|
3
|
+
require 'albacore/unzip'
|
3
4
|
require 'ziptestdata'
|
4
5
|
|
5
6
|
describe ZipDirectory, 'when zipping a directory of files' do
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
end
|
7
|
+
before :each do
|
8
|
+
zip = ZipDirectory.new
|
9
|
+
zip.directories_to_zip ZipTestData.folder
|
10
|
+
zip.output_file = "test.zip"
|
11
|
+
zip.package
|
12
|
+
end
|
13
|
+
|
14
|
+
it "should produce a zip file" do
|
15
|
+
File.exist?(File.join(ZipTestData.folder, "test.zip")).should be_true
|
16
|
+
end
|
17
17
|
end
|
18
18
|
|
19
|
+
describe ZipDirectory, 'when zipping a directory with string exclusions' do
|
20
|
+
before :each do
|
21
|
+
zip = ZipDirectory.new
|
22
|
+
zip.directories_to_zip ZipTestData.folder
|
23
|
+
zip.output_file = 'test.zip'
|
24
|
+
zip.exclusions File.expand_path(File.join(ZipTestData.folder, 'files', 'testfile.txt'))
|
25
|
+
zip.package
|
26
|
+
|
27
|
+
unzip = Unzip.new
|
28
|
+
unzip.zip_file = File.join(ZipTestData.folder, 'test.zip')
|
29
|
+
unzip.unzip_path = ZipTestData.output_folder
|
30
|
+
unzip.unzip
|
31
|
+
end
|
32
|
+
|
33
|
+
after :each do
|
34
|
+
FileUtils.rm_rf ZipTestData.output_folder if File.exist? ZipTestData.output_folder
|
35
|
+
end
|
36
|
+
|
37
|
+
it 'should not zip files with the same name as any exclusions' do
|
38
|
+
File.exist?(File.join(ZipTestData.output_folder, 'files', 'testfile.txt')).should be_false
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
describe ZipDirectory, 'when zipping a directory of files with regexp exclusions' do
|
43
|
+
before :each do
|
44
|
+
zip = ZipDirectory.new
|
45
|
+
zip.directories_to_zip ZipTestData.folder
|
46
|
+
zip.output_file = 'test.zip'
|
47
|
+
zip.exclusions /testfile/
|
48
|
+
zip.package
|
49
|
+
|
50
|
+
unzip = Unzip.new
|
51
|
+
unzip.zip_file = File.join(ZipTestData.folder, 'test.zip')
|
52
|
+
unzip.unzip_path = ZipTestData.output_folder
|
53
|
+
unzip.unzip
|
54
|
+
end
|
55
|
+
|
56
|
+
after :each do
|
57
|
+
FileUtils.rm_rf ZipTestData.output_folder if File.exist? ZipTestData.output_folder
|
58
|
+
end
|
59
|
+
|
60
|
+
it 'should not zip files that match any of the exclusions regexps' do
|
61
|
+
File.exist?(File.join(ZipTestData.output_folder, 'files', 'testfile.txt')).should be_false
|
62
|
+
end
|
63
|
+
end
|
data/spec/ziptask_spec.rb
CHANGED
@@ -4,29 +4,29 @@ require 'rake/ziptask'
|
|
4
4
|
require 'tasklib_patch'
|
5
5
|
|
6
6
|
describe Albacore::ZipTask, "when running" do
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
7
|
+
before :all do
|
8
|
+
task = Albacore::ZipTask.new(:zip) do |t|
|
9
|
+
t.output_file = 'test.zip'
|
10
|
+
@yielded_object = t
|
11
|
+
end
|
12
|
+
task.extend(TasklibPatch)
|
13
|
+
Rake::Task[:zip].invoke
|
14
|
+
end
|
15
|
+
|
16
|
+
it "should yield the zip api" do
|
17
|
+
@yielded_object.kind_of?(ZipDirectory).should be_true
|
18
|
+
end
|
19
19
|
end
|
20
20
|
|
21
21
|
describe Albacore::ZipTask, "when execution fails" do
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
22
|
+
before :all do
|
23
|
+
@task = Albacore::ZipTask.new(:failingtask)
|
24
|
+
@task.extend(TasklibPatch)
|
25
|
+
Rake::Task["failingtask"].invoke
|
26
|
+
@task.fail
|
27
|
+
end
|
28
|
+
|
29
|
+
it "should fail the rake task" do
|
30
|
+
@task.task_failed.should == true
|
31
|
+
end
|
32
32
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: albacore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Derick Bailey
|
@@ -11,7 +11,7 @@ autorequire:
|
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
13
|
|
14
|
-
date:
|
14
|
+
date: 2010-01-20 00:00:00 -06:00
|
15
15
|
default_executable:
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
@@ -109,10 +109,14 @@ files:
|
|
109
109
|
- install_dependencies.rb
|
110
110
|
- lib/albacore.rb
|
111
111
|
- lib/albacore/assemblyinfo.rb
|
112
|
-
- lib/albacore/
|
112
|
+
- lib/albacore/assemblyinfolanguages/csharpengine.rb
|
113
|
+
- lib/albacore/assemblyinfolanguages/vbnetengine.rb
|
114
|
+
- lib/albacore/docu.rb
|
115
|
+
- lib/albacore/exec.rb
|
113
116
|
- lib/albacore/expandtemplates.rb
|
114
117
|
- lib/albacore/msbuild.rb
|
115
118
|
- lib/albacore/mspectestrunner.rb
|
119
|
+
- lib/albacore/nant.rb
|
116
120
|
- lib/albacore/ncoverconsole.rb
|
117
121
|
- lib/albacore/ncoverreport.rb
|
118
122
|
- lib/albacore/ncoverreports/assemblyfilter.rb
|
@@ -128,50 +132,71 @@ files:
|
|
128
132
|
- lib/albacore/ncoverreports/reportfilterbase.rb
|
129
133
|
- lib/albacore/ncoverreports/summaryreport.rb
|
130
134
|
- lib/albacore/ncoverreports/symbolcoverage.rb
|
135
|
+
- lib/albacore/ndepend.rb
|
131
136
|
- lib/albacore/nunittestrunner.rb
|
137
|
+
- lib/albacore/plink.rb
|
132
138
|
- lib/albacore/sftp.rb
|
133
139
|
- lib/albacore/sqlcmd.rb
|
134
140
|
- lib/albacore/ssh.rb
|
135
141
|
- lib/albacore/support/albacore_helper.rb
|
142
|
+
- lib/albacore/support/attrmethods.rb
|
136
143
|
- lib/albacore/support/failure.rb
|
144
|
+
- lib/albacore/support/globalconfig.rb
|
137
145
|
- lib/albacore/support/logging.rb
|
138
146
|
- lib/albacore/support/runcommand.rb
|
139
147
|
- lib/albacore/support/yamlconfig.rb
|
148
|
+
- lib/albacore/unzip.rb
|
149
|
+
- lib/albacore/xbuild.rb
|
140
150
|
- lib/albacore/xunittestrunner.rb
|
141
151
|
- lib/albacore/zipdirectory.rb
|
142
152
|
- lib/rake/assemblyinfotask.rb
|
143
|
-
- lib/rake/
|
153
|
+
- lib/rake/docutask.rb
|
154
|
+
- lib/rake/exectask.rb
|
144
155
|
- lib/rake/expandtemplatestask.rb
|
145
156
|
- lib/rake/msbuildtask.rb
|
146
157
|
- lib/rake/mspectask.rb
|
158
|
+
- lib/rake/nanttask.rb
|
147
159
|
- lib/rake/ncoverconsoletask.rb
|
148
160
|
- lib/rake/ncoverreporttask.rb
|
161
|
+
- lib/rake/ndependtask.rb
|
149
162
|
- lib/rake/nunittask.rb
|
163
|
+
- lib/rake/plinktask.rb
|
150
164
|
- lib/rake/renametask.rb
|
151
165
|
- lib/rake/sftptask.rb
|
152
166
|
- lib/rake/sqlcmdtask.rb
|
153
167
|
- lib/rake/sshtask.rb
|
154
168
|
- lib/rake/support/albacoretask.rb
|
169
|
+
- lib/rake/unziptask.rb
|
170
|
+
- lib/rake/xbuildtask.rb
|
155
171
|
- lib/rake/xunittask.rb
|
156
172
|
- lib/rake/ziptask.rb
|
157
173
|
- rakefile.rb
|
158
174
|
- spec/assemblyinfo_spec.rb
|
159
175
|
- spec/assemblyinfotask_spec.rb
|
160
|
-
- spec/
|
161
|
-
- spec/
|
176
|
+
- spec/docu_spec.rb
|
177
|
+
- spec/docutask_spec.rb
|
178
|
+
- spec/exec_spec.rb
|
179
|
+
- spec/exectask_spec.rb
|
162
180
|
- spec/expandtemplates_spec.rb
|
163
181
|
- spec/expandtemplatestask_spec.rb
|
164
182
|
- spec/msbuild_spec.rb
|
165
183
|
- spec/msbuildtask_spec.rb
|
166
184
|
- spec/mspectask_spec.rb
|
185
|
+
- spec/nant_spec.rb
|
186
|
+
- spec/nanttask_spec.rb
|
167
187
|
- spec/ncoverconsole_spec.rb
|
168
188
|
- spec/ncoverconsoletask_spec.rb
|
169
189
|
- spec/ncoverreport_spec.rb
|
170
190
|
- spec/ncoverreporttask_spec.rb
|
191
|
+
- spec/ndepend_spec.rb
|
192
|
+
- spec/ndependtask_spec.rb
|
171
193
|
- spec/nunittask_spec.rb
|
172
194
|
- spec/nunittestrunner_spec.rb
|
195
|
+
- spec/patches/docu_patch.rb
|
173
196
|
- spec/patches/system_patch.rb
|
174
197
|
- spec/patches/tasklib_patch.rb
|
198
|
+
- spec/plink_spec.rb
|
199
|
+
- spec/plinktask_spec.rb
|
175
200
|
- spec/renametask_spec.rb
|
176
201
|
- spec/sftp_spec.rb
|
177
202
|
- spec/sftptask_spec.rb
|
@@ -195,6 +220,7 @@ files:
|
|
195
220
|
- spec/support/CodeCoverage/xunit/assemblies/TestSolution.dll
|
196
221
|
- spec/support/CodeCoverage/xunit/assemblies/xunit.dll
|
197
222
|
- spec/support/CodeCoverage/xunit/assemblies/xunit.xml
|
223
|
+
- spec/support/TestSolution/NDependProject.xml
|
198
224
|
- spec/support/TestSolution/TestSolution.FailingTests/FailingTestFixture.cs
|
199
225
|
- spec/support/TestSolution/TestSolution.FailingTests/Properties/AssemblyInfo.cs
|
200
226
|
- spec/support/TestSolution/TestSolution.FailingTests/TestSolution.FailingTests.csproj
|
@@ -205,8 +231,10 @@ files:
|
|
205
231
|
- spec/support/TestSolution/TestSolution.Tests/SomeTestFixture.cs
|
206
232
|
- spec/support/TestSolution/TestSolution.Tests/TestSolution.Tests.csproj
|
207
233
|
- spec/support/TestSolution/TestSolution.XUnitTests/Class1.cs
|
234
|
+
- spec/support/TestSolution/TestSolution.XUnitTests/FailingTestFixture.cs
|
208
235
|
- spec/support/TestSolution/TestSolution.XUnitTests/Properties/AssemblyInfo.cs
|
209
236
|
- spec/support/TestSolution/TestSolution.XUnitTests/TestSolution.XUnitTests.csproj
|
237
|
+
- spec/support/TestSolution/TestSolution.build
|
210
238
|
- spec/support/TestSolution/TestSolution.sln
|
211
239
|
- spec/support/TestSolution/TestSolution/Class1.cs
|
212
240
|
- spec/support/TestSolution/TestSolution/Properties/AssemblyInfo.cs
|
@@ -224,12 +252,17 @@ files:
|
|
224
252
|
- spec/support/expandtemplates/templates/sample.config
|
225
253
|
- spec/support/expandtemplatestestdata.rb
|
226
254
|
- spec/support/msbuildtestdata.rb
|
255
|
+
- spec/support/nanttestdata.rb
|
256
|
+
- spec/support/ncoverconsoletestdata.rb
|
227
257
|
- spec/support/ncoverreporttestdata.rb
|
228
258
|
- spec/support/spec_helper.rb
|
229
259
|
- spec/support/test.yml
|
260
|
+
- spec/support/yamlconfig/msbuild.yml
|
261
|
+
- spec/support/yamlconfig/yaml_autoconfig_test.yml
|
230
262
|
- spec/support/zip/files/subfolder/sub file.txt
|
231
263
|
- spec/support/zip/files/testfile.txt
|
232
264
|
- spec/support/ziptestdata.rb
|
265
|
+
- spec/xunit_spec.rb
|
233
266
|
- spec/xunittask_spec.rb
|
234
267
|
- spec/yamlconfig_spec.rb
|
235
268
|
- spec/zip_spec.rb
|
@@ -266,21 +299,30 @@ summary: A Suite of Rake Build Tasks For .Net Solutions
|
|
266
299
|
test_files:
|
267
300
|
- spec/assemblyinfotask_spec.rb
|
268
301
|
- spec/assemblyinfo_spec.rb
|
269
|
-
- spec/
|
270
|
-
- spec/
|
302
|
+
- spec/docutask_spec.rb
|
303
|
+
- spec/docu_spec.rb
|
304
|
+
- spec/exectask_spec.rb
|
305
|
+
- spec/exec_spec.rb
|
271
306
|
- spec/expandtemplatestask_spec.rb
|
272
307
|
- spec/expandtemplates_spec.rb
|
273
308
|
- spec/msbuildtask_spec.rb
|
274
309
|
- spec/msbuild_spec.rb
|
275
310
|
- spec/mspectask_spec.rb
|
311
|
+
- spec/nanttask_spec.rb
|
312
|
+
- spec/nant_spec.rb
|
276
313
|
- spec/ncoverconsoletask_spec.rb
|
277
314
|
- spec/ncoverconsole_spec.rb
|
278
315
|
- spec/ncoverreporttask_spec.rb
|
279
316
|
- spec/ncoverreport_spec.rb
|
317
|
+
- spec/ndependtask_spec.rb
|
318
|
+
- spec/ndepend_spec.rb
|
280
319
|
- spec/nunittask_spec.rb
|
281
320
|
- spec/nunittestrunner_spec.rb
|
321
|
+
- spec/patches/docu_patch.rb
|
282
322
|
- spec/patches/system_patch.rb
|
283
323
|
- spec/patches/tasklib_patch.rb
|
324
|
+
- spec/plinktask_spec.rb
|
325
|
+
- spec/plink_spec.rb
|
284
326
|
- spec/renametask_spec.rb
|
285
327
|
- spec/sftptask_spec.rb
|
286
328
|
- spec/sftp_spec.rb
|
@@ -291,10 +333,13 @@ test_files:
|
|
291
333
|
- spec/support/assemblyinfotester.rb
|
292
334
|
- spec/support/expandtemplatestestdata.rb
|
293
335
|
- spec/support/msbuildtestdata.rb
|
336
|
+
- spec/support/nanttestdata.rb
|
337
|
+
- spec/support/ncoverconsoletestdata.rb
|
294
338
|
- spec/support/ncoverreporttestdata.rb
|
295
339
|
- spec/support/spec_helper.rb
|
296
340
|
- spec/support/ziptestdata.rb
|
297
341
|
- spec/xunittask_spec.rb
|
342
|
+
- spec/xunit_spec.rb
|
298
343
|
- spec/yamlconfig_spec.rb
|
299
344
|
- spec/ziptask_spec.rb
|
300
345
|
- spec/zip_spec.rb
|