hypercuke 0.5.0 → 0.5.1
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.
- checksums.yaml +4 -4
- data/lib/hypercuke/cli/builder.rb +9 -5
- data/lib/hypercuke/version.rb +5 -1
- data/spec/cli_spec.rb +9 -9
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b2d3d8c4332058cc641a19baeeb7ab65604b518c
|
4
|
+
data.tar.gz: a53670cee898b72e1648af585fc06116866632a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 74e341f88dae4ca3e27bd159a7fddd9516b4f32329d4e94506181faa06f57f768e6dd4e9469d33cdd4f875043f81831d68070d53dfa2c29c0351ab8dbfed5c33
|
7
|
+
data.tar.gz: 9491999783bf584e615c5591f661470322d703f89a803678b61c3e66ee9b7c978b2ece09614c42146a28ab416700712eef48f1ee78df94118be43e7e02af18ea
|
@@ -31,14 +31,18 @@ module Hypercuke
|
|
31
31
|
end
|
32
32
|
|
33
33
|
def add_layer_tag_for_mode
|
34
|
-
cuke_args <<
|
34
|
+
cuke_args << layer_tags_for_mode
|
35
35
|
end
|
36
36
|
|
37
|
-
def
|
37
|
+
def layer_tags_for_mode
|
38
38
|
layer = options.fetch(:layer_name)
|
39
|
-
mode = options[:mode]
|
40
|
-
|
41
|
-
'
|
39
|
+
mode = [options[:mode].to_s.strip, 'ok'].reject {|s| s =~ /^\s*$/ }.first
|
40
|
+
|
41
|
+
if 'ok' == mode
|
42
|
+
"--tags @#{layer} --tags @#{layer}_ok"
|
43
|
+
else
|
44
|
+
"--tags @#{layer}_#{mode}"
|
45
|
+
end
|
42
46
|
end
|
43
47
|
|
44
48
|
def add_profile_unless_already_present
|
data/lib/hypercuke/version.rb
CHANGED
data/spec/cli_spec.rb
CHANGED
@@ -48,13 +48,13 @@ expected: #{expected_output.inspect}
|
|
48
48
|
end
|
49
49
|
|
50
50
|
it "ignores the 0th 'hcu' argument in its various forms (does this even happen?)" do
|
51
|
-
expect_command_line 'hcu core', "#{cmd_base} --tags @core"
|
52
|
-
expect_command_line 'bin/hcu core', "#{cmd_base} --tags @core"
|
51
|
+
expect_command_line 'hcu core', "#{cmd_base} --tags @core --tags @core_ok"
|
52
|
+
expect_command_line 'bin/hcu core', "#{cmd_base} --tags @core --tags @core_ok"
|
53
53
|
end
|
54
54
|
|
55
55
|
it "treats the first argument as a layer name and adds the appropriate --tags flag" do
|
56
|
-
expect_command_line 'core', "#{cmd_base} --tags @core"
|
57
|
-
expect_command_line 'model', "#{cmd_base} --tags @model"
|
56
|
+
expect_command_line 'core', "#{cmd_base} --tags @core --tags @core_ok"
|
57
|
+
expect_command_line 'model', "#{cmd_base} --tags @model --tags @model_ok"
|
58
58
|
end
|
59
59
|
|
60
60
|
it "barfs if the layer name is not given" do
|
@@ -63,7 +63,7 @@ expected: #{expected_output.inspect}
|
|
63
63
|
end
|
64
64
|
|
65
65
|
it "treats the second argument as a mode (assuming it doesn't start with a dash)" do
|
66
|
-
expect_command_line 'core ok', "#{cmd_base} --tags @core"
|
66
|
+
expect_command_line 'core ok', "#{cmd_base} --tags @core --tags @core_ok"
|
67
67
|
end
|
68
68
|
|
69
69
|
it "adds '--profile wip' when the mode is 'wip'" do
|
@@ -71,13 +71,13 @@ expected: #{expected_output.inspect}
|
|
71
71
|
end
|
72
72
|
|
73
73
|
it "ignores most other arguments and just hands them off to Cucumber" do
|
74
|
-
expect_command_line 'core --wibble', "#{cmd_base} --tags @core --wibble"
|
75
|
-
expect_command_line 'core ok --wibble', "#{cmd_base} --tags @core --wibble"
|
74
|
+
expect_command_line 'core --wibble', "#{cmd_base} --tags @core --tags @core_ok --wibble"
|
75
|
+
expect_command_line 'core ok --wibble', "#{cmd_base} --tags @core --tags @core_ok --wibble"
|
76
76
|
end
|
77
77
|
|
78
78
|
it "doesn't override a profile if the user explicitly specifies one (using either -p or --profile)" do
|
79
|
-
expect_command_line 'core --dingbat --profile emperor_penguin', "#{cmd_base} --tags @core --profile emperor_penguin --dingbat"
|
80
|
-
expect_command_line 'core --dingbat -p emperor_penguin', "#{cmd_base} --tags @core --profile emperor_penguin --dingbat"
|
79
|
+
expect_command_line 'core --dingbat --profile emperor_penguin', "#{cmd_base} --tags @core --tags @core_ok --profile emperor_penguin --dingbat"
|
80
|
+
expect_command_line 'core --dingbat -p emperor_penguin', "#{cmd_base} --tags @core --tags @core_ok --profile emperor_penguin --dingbat"
|
81
81
|
end
|
82
82
|
|
83
83
|
it "doesn't override a user-specified profile, even in wip mode when it would normally use the wip profile" do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hypercuke
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sam Livingston-Gray
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-08-
|
11
|
+
date: 2014-08-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|