fluent_command_builder 0.1.19 → 0.1.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4,11 +4,11 @@ require File.expand_path(File.dirname(__FILE__) + '/../command_builder')
|
|
|
4
4
|
module FluentCommandBuilder
|
|
5
5
|
module NUnit
|
|
6
6
|
module V25
|
|
7
|
-
COMMAND_NAME = 'nunit'
|
|
7
|
+
COMMAND_NAME = 'nunit-console'
|
|
8
8
|
class NUnit < CommandBase
|
|
9
9
|
def initialize builder, assembly
|
|
10
10
|
super builder
|
|
11
|
-
@builder.append "
|
|
11
|
+
@builder.append " #{@builder.format assembly}"
|
|
12
12
|
end
|
|
13
13
|
def run test
|
|
14
14
|
@builder.append " /run:#{@builder.format test}"
|