octopolo 0.1.1 → 0.1.2
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 +8 -8
- data/CHANGELOG.markdown +6 -0
- data/lib/octopolo/github/label.rb +1 -1
- data/lib/octopolo/version.rb +1 -1
- data/spec/octopolo/github/label_spec.rb +2 -2
- data/spec/octopolo/scripts/pull_request_spec.rb +7 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YTgyM2U3NzNkMzA5ZmFmYjM2ZjkwNTAzNTU2MDU3MWQzNWVlMzc5Nw==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
NThjZWMxNGIwMjkyMTgxYjVlN2FhZmQ1YjZiMThjZWUyMDY5YzQ4Ng==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
OTQwNTI2ZThiYzFhNGI1YmJiM2Q0YjUxOTNhM2ViYTBhMmEyNmM1N2M0Y2Jh
|
10
|
+
YTdiY2Y4ODRhMTJmOGU2MzgyYjQ3MzBiY2NiY2I4NjEwYzIyMjM5NTBkNTk5
|
11
|
+
MTU0MzEyNDlkNTk0MGFmMmU0ZWVkMjcwOWU5NDAyYzkyMDc3ZTU=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZDk2ZTdlMGExMzg1NTNhNzUzY2RkMzEyZjJiYTI5MzJhNjg3ZWJlOWY4YTY1
|
14
|
+
ZTg3N2RiOWQ1ZmI5MWM0MWYwNGZlNmZhZDliOTRjNjA3Zjc2NDJmNWRlNWFk
|
15
|
+
ODUyZDg3MmUzYTcwZDczMDdkNjBlOTBhY2E5YzdlOTM3NDdjZmE=
|
data/CHANGELOG.markdown
CHANGED
data/lib/octopolo/version.rb
CHANGED
@@ -34,13 +34,13 @@ module Octopolo
|
|
34
34
|
|
35
35
|
context "#first_or_create" do
|
36
36
|
it "finds the existing label and doesn't do anything" do
|
37
|
-
allow(Label).to receive(:
|
37
|
+
allow(Label).to receive(:all_from_repo).and_return([label1,label2])
|
38
38
|
expect(GitHub).not_to receive(:add_label)
|
39
39
|
Label.first_or_create(label1)
|
40
40
|
end
|
41
41
|
|
42
42
|
it "doesn't find a label and creates one" do
|
43
|
-
allow(Label).to receive(:
|
43
|
+
allow(Label).to receive(:all_from_repo).and_return([label1,label2])
|
44
44
|
expect(GitHub).to receive(:add_label).with(config.github_repo, "medium-risk", "454545")
|
45
45
|
Label.first_or_create(Label.new(name: "medium-risk", color: "454545"))
|
46
46
|
end
|
@@ -124,6 +124,13 @@ module Octopolo
|
|
124
124
|
expect(cli).to receive(:ask).with("Label:",choices)
|
125
125
|
subject.send(:ask_label)
|
126
126
|
end
|
127
|
+
|
128
|
+
it "asks for a label" do
|
129
|
+
allow(Octopolo::GitHub::Label).to receive(:all) {[label1,label2]}
|
130
|
+
allow(Octopolo::GitHub::Label).to receive(:get_names) {choices}
|
131
|
+
allow(cli).to receive(:ask) {"low-risk"}
|
132
|
+
expect(subject.send(:ask_label)).to eq(label1)
|
133
|
+
end
|
127
134
|
end
|
128
135
|
|
129
136
|
context "#ask_pivotal_ids" do
|