bitprophet-github 0.3.4
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.
- data/LICENSE +18 -0
- data/Manifest +23 -0
- data/README +164 -0
- data/bin/gh +8 -0
- data/bin/github +8 -0
- data/github-gem.gemspec +27 -0
- data/lib/commands/commands.rb +206 -0
- data/lib/commands/helpers.rb +397 -0
- data/lib/commands/network.rb +113 -0
- data/lib/github.rb +183 -0
- data/lib/github/command.rb +129 -0
- data/lib/github/extensions.rb +39 -0
- data/lib/github/helper.rb +4 -0
- data/spec/command_spec.rb +82 -0
- data/spec/extensions_spec.rb +36 -0
- data/spec/github_spec.rb +85 -0
- data/spec/helper_spec.rb +280 -0
- data/spec/spec_helper.rb +138 -0
- data/spec/ui_spec.rb +604 -0
- data/spec/windoze_spec.rb +36 -0
- metadata +105 -0
data/spec/github_spec.rb
ADDED
@@ -0,0 +1,85 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/spec_helper'
|
2
|
+
|
3
|
+
describe "GitHub.parse_options" do
|
4
|
+
it "should parse --bare options" do
|
5
|
+
args = ["--bare", "--test"]
|
6
|
+
GitHub.parse_options(args).should == {:bare => true, :test => true}
|
7
|
+
args.should == []
|
8
|
+
end
|
9
|
+
|
10
|
+
it "should parse options intermixed with non-options" do
|
11
|
+
args = ["text", "--bare", "more text", "--option", "--foo"]
|
12
|
+
GitHub.parse_options(args).should == {:bare => true, :option => true, :foo => true}
|
13
|
+
args.should == ["text", "more text"]
|
14
|
+
end
|
15
|
+
|
16
|
+
it "should parse --foo=bar style options" do
|
17
|
+
args = ["--foo=bar", "--bare"]
|
18
|
+
GitHub.parse_options(args).should == {:bare => true, :foo => "bar"}
|
19
|
+
args.should == []
|
20
|
+
end
|
21
|
+
|
22
|
+
it "should stop parsing options at --" do
|
23
|
+
args = ["text", "--bare", "--", "--foo"]
|
24
|
+
GitHub.parse_options(args).should == {:bare => true}
|
25
|
+
args.should == ["text", "--foo"]
|
26
|
+
end
|
27
|
+
|
28
|
+
it "should handle duplicate options" do
|
29
|
+
args = ["text", "--foo=bar", "--bare", "--foo=baz"]
|
30
|
+
GitHub.parse_options(args).should == {:foo => "baz", :bare => true}
|
31
|
+
args.should == ["text"]
|
32
|
+
end
|
33
|
+
|
34
|
+
it "should handle duplicate --bare options surrounding --" do
|
35
|
+
args = ["text", "--bare", "--", "--bare"]
|
36
|
+
GitHub.parse_options(args).should == {:bare => true}
|
37
|
+
args.should == ["text", "--bare"]
|
38
|
+
end
|
39
|
+
|
40
|
+
it "should handle no options" do
|
41
|
+
args = ["text", "more text"]
|
42
|
+
GitHub.parse_options(args).should == {}
|
43
|
+
args.should == ["text", "more text"]
|
44
|
+
end
|
45
|
+
|
46
|
+
it "should handle no args" do
|
47
|
+
args = []
|
48
|
+
GitHub.parse_options(args).should == {}
|
49
|
+
args.should == []
|
50
|
+
end
|
51
|
+
|
52
|
+
it "should not set up debugging when --debug not passed" do
|
53
|
+
GitHub.stub!(:load)
|
54
|
+
GitHub.stub!(:invoke)
|
55
|
+
GitHub.activate(['default'])
|
56
|
+
GitHub.should_not be_debug
|
57
|
+
end
|
58
|
+
|
59
|
+
it "should set up debugging when passed --debug" do
|
60
|
+
GitHub.stub!(:load)
|
61
|
+
GitHub.stub!(:invoke)
|
62
|
+
GitHub.activate(['default', '--debug'])
|
63
|
+
GitHub.should be_debug
|
64
|
+
end
|
65
|
+
|
66
|
+
it "should allow for an alias on a commad" do
|
67
|
+
GitHub.command 'some-command', :aliases => 'an-alias' do
|
68
|
+
end
|
69
|
+
GitHub.commands['an-alias'].should_not be_nil
|
70
|
+
GitHub.commands['an-alias'].should_not == GitHub.commands['non-existant-command']
|
71
|
+
GitHub.commands['an-alias'].should == GitHub.commands['some-command']
|
72
|
+
end
|
73
|
+
|
74
|
+
it "should allow for an array of aliases on a commad" do
|
75
|
+
GitHub.command 'another-command', :aliases => ['some-alias-1', 'some-alias-2'] do
|
76
|
+
end
|
77
|
+
GitHub.commands['some-alias-1'].should_not be_nil
|
78
|
+
GitHub.commands['some-alias-1'].should_not == GitHub.commands['non-existant-command']
|
79
|
+
GitHub.commands['some-alias-1'].should_not be_nil
|
80
|
+
GitHub.commands['some-alias-1'].should_not == GitHub.commands['non-existant-command']
|
81
|
+
GitHub.commands['some-alias-1'].should == GitHub.commands['another-command']
|
82
|
+
GitHub.commands['some-alias-2'].should == GitHub.commands['another-command']
|
83
|
+
end
|
84
|
+
|
85
|
+
end
|
data/spec/helper_spec.rb
ADDED
@@ -0,0 +1,280 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/spec_helper'
|
2
|
+
|
3
|
+
class HelperRunner
|
4
|
+
def initialize(parent, name)
|
5
|
+
@parent = parent
|
6
|
+
@name = name
|
7
|
+
end
|
8
|
+
|
9
|
+
def run(&block)
|
10
|
+
self.instance_eval(&block)
|
11
|
+
end
|
12
|
+
|
13
|
+
def it(str, &block)
|
14
|
+
@parent.send :it, "#{@name} #{str}", &block
|
15
|
+
end
|
16
|
+
alias specify it
|
17
|
+
end
|
18
|
+
|
19
|
+
describe GitHub::Helper do
|
20
|
+
include SetupMethods
|
21
|
+
|
22
|
+
def self.helper(name, &block)
|
23
|
+
HelperRunner.new(self, name).run(&block)
|
24
|
+
end
|
25
|
+
|
26
|
+
before(:each) do
|
27
|
+
@helper = GitHub::Helper.new
|
28
|
+
end
|
29
|
+
|
30
|
+
helper :owner do
|
31
|
+
it "should return repo owner" do
|
32
|
+
setup_url_for :origin, "hacker"
|
33
|
+
@helper.owner.should == "hacker"
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
helper :private_url_for do
|
38
|
+
it "should return an ssh-style url" do
|
39
|
+
setup_url_for :origin, "user", "merb-core"
|
40
|
+
@helper.private_url_for("wycats").should == "git@github.com:wycats/merb-core.git"
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
helper :private_url_for_user_and_repo do
|
45
|
+
it "should return an ssh-style url" do
|
46
|
+
@helper.should_not_receive(:project)
|
47
|
+
@helper.private_url_for_user_and_repo("defunkt", "github-gem").should == "git@github.com:defunkt/github-gem.git"
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
helper :public_url_for do
|
52
|
+
it "should return a git:// URL" do
|
53
|
+
setup_url_for :origin, "user", "merb-core"
|
54
|
+
@helper.public_url_for("wycats").should == "git://github.com/wycats/merb-core.git"
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
helper :public_url_for_user_and_repo do
|
59
|
+
it "should return a git:// URL" do
|
60
|
+
@helper.should_not_receive(:project)
|
61
|
+
@helper.public_url_for_user_and_repo("defunkt", "github-gem").should == "git://github.com/defunkt/github-gem.git"
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
helper :project do
|
66
|
+
it "should return project-awesome" do
|
67
|
+
setup_url_for :origin, "user", "project-awesome"
|
68
|
+
@helper.project.should == "project-awesome"
|
69
|
+
end
|
70
|
+
|
71
|
+
it "should exit due to missing origin" do
|
72
|
+
@helper.should_receive(:url_for).twice.with(:origin).and_return("")
|
73
|
+
STDERR.should_receive(:puts).with("Error: missing remote 'origin'")
|
74
|
+
lambda { @helper.project }.should raise_error(SystemExit)
|
75
|
+
end
|
76
|
+
|
77
|
+
it "should exit due to non-github origin" do
|
78
|
+
@helper.should_receive(:url_for).twice.with(:origin).and_return("home:path/to/repo.git")
|
79
|
+
STDERR.should_receive(:puts).with("Error: remote 'origin' is not a github URL")
|
80
|
+
lambda { @helper.project }.should raise_error(SystemExit)
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
helper :repo_for do
|
85
|
+
it "should return mephisto.git" do
|
86
|
+
setup_url_for :mojombo, "mojombo", "mephisto"
|
87
|
+
@helper.repo_for(:mojombo).should == "mephisto.git"
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
helper :user_and_repo_from do
|
92
|
+
it "should parse a git:// url" do
|
93
|
+
@helper.user_and_repo_from("git://github.com/defunkt/github.git").should == ["defunkt", "github.git"]
|
94
|
+
end
|
95
|
+
|
96
|
+
it "should parse a ssh-based url" do
|
97
|
+
@helper.user_and_repo_from("git@github.com:mojombo/god.git").should == ["mojombo", "god.git"]
|
98
|
+
end
|
99
|
+
|
100
|
+
it "should parse a non-standard ssh-based url" do
|
101
|
+
@helper.user_and_repo_from("ssh://git@github.com:mojombo/god.git").should == ["mojombo", "god.git"]
|
102
|
+
@helper.user_and_repo_from("github.com:mojombo/god.git").should == ["mojombo", "god.git"]
|
103
|
+
@helper.user_and_repo_from("ssh://github.com:mojombo/god.git").should == ["mojombo", "god.git"]
|
104
|
+
end
|
105
|
+
|
106
|
+
it "should return nothing for other urls" do
|
107
|
+
@helper.user_and_repo_from("home:path/to/repo.git").should == nil
|
108
|
+
end
|
109
|
+
|
110
|
+
it "should return nothing for invalid git:// urls" do
|
111
|
+
@helper.user_and_repo_from("git://github.com/foo").should == nil
|
112
|
+
end
|
113
|
+
|
114
|
+
it "should return nothing for invalid ssh-based urls" do
|
115
|
+
@helper.user_and_repo_from("git@github.com:kballard").should == nil
|
116
|
+
@helper.user_and_repo_from("git@github.com:kballard/test/repo.git").should == nil
|
117
|
+
@helper.user_and_repo_from("ssh://git@github.com:kballard").should == nil
|
118
|
+
@helper.user_and_repo_from("github.com:kballard").should == nil
|
119
|
+
@helper.user_and_repo_from("ssh://github.com:kballard").should == nil
|
120
|
+
end
|
121
|
+
end
|
122
|
+
|
123
|
+
helper :user_for do
|
124
|
+
it "should return defunkt" do
|
125
|
+
setup_url_for :origin, "defunkt"
|
126
|
+
@helper.user_for(:origin).should == "defunkt"
|
127
|
+
end
|
128
|
+
end
|
129
|
+
|
130
|
+
helper :url_for do
|
131
|
+
it "should call out to the shell" do
|
132
|
+
@helper.should_receive(:`).with("git config --get remote.origin.url").and_return "git://github.com/user/project.git\n"
|
133
|
+
@helper.url_for(:origin).should == "git://github.com/user/project.git"
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
137
|
+
helper :remotes do
|
138
|
+
it "should return a list of remotes" do
|
139
|
+
@helper.should_receive(:`).with('git config --get-regexp \'^remote\.(.+)\.url$\'').and_return <<-EOF
|
140
|
+
remote.origin.url git@github.com:kballard/github-gem.git
|
141
|
+
remote.defunkt.url git://github.com/defunkt/github-gem.git
|
142
|
+
remote.nex3.url git://github.com/nex3/github-gem.git
|
143
|
+
EOF
|
144
|
+
@helper.remotes.should == {
|
145
|
+
:origin => "git@github.com:kballard/github-gem.git",
|
146
|
+
:defunkt => "git://github.com/defunkt/github-gem.git",
|
147
|
+
:nex3 => "git://github.com/nex3/github-gem.git"
|
148
|
+
}
|
149
|
+
end
|
150
|
+
end
|
151
|
+
|
152
|
+
helper :remote_branches_for do
|
153
|
+
it "should return an empty list because no user was provided" do
|
154
|
+
@helper.remote_branches_for(nil).should == nil
|
155
|
+
end
|
156
|
+
|
157
|
+
it "should return a list of remote branches for defunkt" do
|
158
|
+
@helper.should_receive(:`).with('git ls-remote -h defunkt 2> /dev/null').and_return <<-EOF
|
159
|
+
fe1f852f3cf719c7cd86147031732f570ad89619 refs/heads/kballard/master
|
160
|
+
f8a6bb42b0ed43ac7336bfcda246e59a9da949d6 refs/heads/master
|
161
|
+
624d9c2f742ff24a79353a7e02bf289235c72ff1 refs/heads/restart
|
162
|
+
EOF
|
163
|
+
@helper.remote_branches_for("defunkt").should == {
|
164
|
+
"master" => "f8a6bb42b0ed43ac7336bfcda246e59a9da949d6",
|
165
|
+
"kballard/master" => "fe1f852f3cf719c7cd86147031732f570ad89619",
|
166
|
+
"restart" => "624d9c2f742ff24a79353a7e02bf289235c72ff1"
|
167
|
+
}
|
168
|
+
end
|
169
|
+
|
170
|
+
it "should return an empty list of remote branches for nex3 and nex4" do
|
171
|
+
# the following use-case should never happen as the -h parameter should only return heads on remote branches
|
172
|
+
# however, we are testing this particular case to verify how remote_branches_for would respond if random
|
173
|
+
# git results
|
174
|
+
@helper.should_receive(:`).with('git ls-remote -h nex3 2> /dev/null').and_return <<-EOF
|
175
|
+
fe1f852f3cf719c7cd86147031732f570ad89619 HEAD
|
176
|
+
a1a392369e5b7842d01cce965272d4b96c2fd343 refs/tags/v0.1.3
|
177
|
+
624d9c2f742ff24a79353a7e02bf289235c72ff1 refs/remotes/origin/master
|
178
|
+
random
|
179
|
+
random_again
|
180
|
+
EOF
|
181
|
+
@helper.remote_branches_for("nex3").should be_empty
|
182
|
+
|
183
|
+
@helper.should_receive(:`).with('git ls-remote -h nex4 2> /dev/null').and_return ""
|
184
|
+
@helper.remote_branches_for("nex4").should be_empty
|
185
|
+
end
|
186
|
+
end
|
187
|
+
|
188
|
+
helper :remote_branch? do
|
189
|
+
it "should return whether the branch exists at the remote user" do
|
190
|
+
@helper.should_receive(:remote_branches_for).with("defunkt").any_number_of_times.and_return({
|
191
|
+
"master" => "f8a6bb42b0ed43ac7336bfcda246e59a9da949d6",
|
192
|
+
"kballard/master" => "fe1f852f3cf719c7cd86147031732f570ad89619",
|
193
|
+
"restart" => "624d9c2f742ff24a79353a7e02bf289235c72ff1"
|
194
|
+
})
|
195
|
+
@helper.remote_branch?("defunkt", "master").should == true
|
196
|
+
@helper.remote_branch?("defunkt", "not_master").should == false
|
197
|
+
end
|
198
|
+
end
|
199
|
+
|
200
|
+
helper :branch_dirty? do
|
201
|
+
it "should return false" do
|
202
|
+
@helper.should_receive(:system).with(/^git diff/).and_return(0, 0)
|
203
|
+
@helper.branch_dirty?.should == 0
|
204
|
+
end
|
205
|
+
|
206
|
+
it "should return true" do
|
207
|
+
@helper.should_receive(:system).with(/^git diff/).and_return(1, 1, 0, 1)
|
208
|
+
@helper.branch_dirty?.should == 1
|
209
|
+
@helper.branch_dirty?.should == 1
|
210
|
+
end
|
211
|
+
end
|
212
|
+
|
213
|
+
helper :tracking do
|
214
|
+
it "should return a list of remote/user_or_url pairs" do
|
215
|
+
@helper.should_receive(:remotes).and_return({
|
216
|
+
:origin => "git@github.com:kballard/github-gem.git",
|
217
|
+
:defunkt => "git://github.com/defunkt/github-gem.git",
|
218
|
+
:external => "server:path/to/github-gem.git"
|
219
|
+
})
|
220
|
+
@helper.tracking.should == {
|
221
|
+
:origin => "kballard",
|
222
|
+
:defunkt => "defunkt",
|
223
|
+
:external => "server:path/to/github-gem.git"
|
224
|
+
}
|
225
|
+
end
|
226
|
+
end
|
227
|
+
|
228
|
+
helper :tracking? do
|
229
|
+
it "should return whether the user is tracked" do
|
230
|
+
@helper.should_receive(:tracking).any_number_of_times.and_return({
|
231
|
+
:origin => "kballard",
|
232
|
+
:defunkt => "defunkt",
|
233
|
+
:external => "server:path/to/github-gem.git"
|
234
|
+
})
|
235
|
+
@helper.tracking?("kballard").should == true
|
236
|
+
@helper.tracking?("defunkt").should == true
|
237
|
+
@helper.tracking?("nex3").should == false
|
238
|
+
end
|
239
|
+
end
|
240
|
+
|
241
|
+
helper :user_and_branch do
|
242
|
+
it "should return owner and branch for unqualified branches" do
|
243
|
+
setup_url_for
|
244
|
+
@helper.should_receive(:`).with("git rev-parse --symbolic-full-name HEAD").and_return "refs/heads/master"
|
245
|
+
@helper.user_and_branch.should == ["user", "master"]
|
246
|
+
end
|
247
|
+
|
248
|
+
it "should return user and branch for user/branch-style branches" do
|
249
|
+
@helper.should_receive(:`).with("git rev-parse --symbolic-full-name HEAD").and_return "refs/heads/defunkt/wip"
|
250
|
+
@helper.user_and_branch.should == ["defunkt", "wip"]
|
251
|
+
end
|
252
|
+
end
|
253
|
+
|
254
|
+
helper :open do
|
255
|
+
it "should launch the URL when Launchy is installed" do
|
256
|
+
begin
|
257
|
+
require 'launchy'
|
258
|
+
|
259
|
+
@helper.should_receive(:gem).with('launchy')
|
260
|
+
Launchy::Browser.next_instance.tap do |browser|
|
261
|
+
browser.should_receive(:my_os_family).any_number_of_times.and_return :windows # avoid forking
|
262
|
+
if RUBY_PLATFORM =~ /mingw|mswin/
|
263
|
+
browser.should_receive(:system).with("start http://www.google.com")
|
264
|
+
else
|
265
|
+
browser.should_receive(:system).with("/usr/bin/open http://www.google.com")
|
266
|
+
end
|
267
|
+
@helper.open "http://www.google.com"
|
268
|
+
end
|
269
|
+
rescue LoadError
|
270
|
+
fail "Launchy is required for this spec"
|
271
|
+
end
|
272
|
+
end
|
273
|
+
|
274
|
+
it "should fail when Launchy is not installed" do
|
275
|
+
@helper.should_receive(:gem).with('launchy').and_raise(Gem::LoadError)
|
276
|
+
STDERR.should_receive(:puts).with("Sorry, you need to install launchy: `gem install launchy`")
|
277
|
+
@helper.open "http://www.google.com"
|
278
|
+
end
|
279
|
+
end
|
280
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,138 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'spec'
|
3
|
+
|
4
|
+
require File.dirname(__FILE__) + '/../lib/github'
|
5
|
+
|
6
|
+
class Module
|
7
|
+
def metaclass
|
8
|
+
class << self;self;end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
|
12
|
+
class Spec::NextInstanceProxy
|
13
|
+
def initialize
|
14
|
+
@deferred = []
|
15
|
+
end
|
16
|
+
|
17
|
+
def method_missing(sym, *args)
|
18
|
+
proxy = Spec::NextInstanceProxy.new
|
19
|
+
@deferred << [sym, args, proxy]
|
20
|
+
proxy
|
21
|
+
end
|
22
|
+
|
23
|
+
def should_receive(*args)
|
24
|
+
method_missing(:should_receive, *args)
|
25
|
+
end
|
26
|
+
alias stub! should_receive
|
27
|
+
|
28
|
+
def invoke(obj)
|
29
|
+
@deferred.each do |(sym, args, proxy)|
|
30
|
+
result = obj.send(sym, *args)
|
31
|
+
proxy.invoke(result)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
class Class
|
37
|
+
def next_instance
|
38
|
+
meth = metaclass.instance_method(:new)
|
39
|
+
proxy = Spec::NextInstanceProxy.new
|
40
|
+
metaclass.send :define_method, :new do |*args|
|
41
|
+
instance = meth.bind(self).call(*args)
|
42
|
+
proxy.invoke(instance)
|
43
|
+
metaclass.send :define_method, :new, meth
|
44
|
+
instance
|
45
|
+
end
|
46
|
+
proxy
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
module Spec::Example::ExampleGroupSubclassMethods
|
51
|
+
def add_guard(klass, name, is_class = false)
|
52
|
+
guarded = nil # define variable now for scoping
|
53
|
+
target = (is_class ? klass.metaclass : klass)
|
54
|
+
sep = (is_class ? "." : "#")
|
55
|
+
target.class_eval do
|
56
|
+
guarded = instance_method(name)
|
57
|
+
define_method name do |*args|
|
58
|
+
raise "Testing guards violated: Cannot call #{klass}#{sep}#{name}"
|
59
|
+
end
|
60
|
+
end
|
61
|
+
@guards ||= []
|
62
|
+
@guards << [klass, name, is_class, guarded]
|
63
|
+
end
|
64
|
+
|
65
|
+
def add_class_guard(klass, name)
|
66
|
+
add_guard(klass, name, true)
|
67
|
+
end
|
68
|
+
|
69
|
+
def unguard(klass, name, is_class = false)
|
70
|
+
row = @guards.find { |(k,n,i)| k == klass and n == name and i == is_class }
|
71
|
+
raise "#{klass}#{is_class ? "." : "#"}#{name} is not guarded" if row.nil?
|
72
|
+
(is_class ? klass.metaclass : klass).class_eval do
|
73
|
+
define_method name, row.last
|
74
|
+
end
|
75
|
+
@guards.delete row
|
76
|
+
end
|
77
|
+
|
78
|
+
def class_unguard(klass, name)
|
79
|
+
unguard(klass, name, true)
|
80
|
+
end
|
81
|
+
|
82
|
+
def unguard_all
|
83
|
+
@guards ||= []
|
84
|
+
@guards.each do |klass, name, is_class, guarded|
|
85
|
+
(is_class ? klass.metaclass : klass).class_eval do
|
86
|
+
define_method name, guarded
|
87
|
+
end
|
88
|
+
end
|
89
|
+
@guards.clear
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
# prevent the use of `` in tests
|
94
|
+
Spec::Runner.configure do |configuration|
|
95
|
+
# load this here so it's covered by the `` guard
|
96
|
+
configuration.prepend_before(:all) do
|
97
|
+
module GitHub
|
98
|
+
load 'helpers.rb'
|
99
|
+
load 'commands.rb'
|
100
|
+
end
|
101
|
+
end
|
102
|
+
|
103
|
+
configuration.prepend_after(:each) do
|
104
|
+
GitHub.instance_variable_set :'@options', nil
|
105
|
+
GitHub.instance_variable_set :'@debug', nil
|
106
|
+
end
|
107
|
+
|
108
|
+
configuration.prepend_before(:all) do
|
109
|
+
self.class.send :include, Spec::Example::ExampleGroupSubclassMethods
|
110
|
+
end
|
111
|
+
|
112
|
+
configuration.prepend_before(:each) do
|
113
|
+
add_guard Kernel, :`
|
114
|
+
add_guard Kernel, :system
|
115
|
+
add_guard Kernel, :fork
|
116
|
+
add_guard Kernel, :exec
|
117
|
+
add_class_guard Process, :fork
|
118
|
+
end
|
119
|
+
|
120
|
+
configuration.append_after(:each) do
|
121
|
+
unguard_all
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
# include this in any example group that defines @helper
|
126
|
+
module SetupMethods
|
127
|
+
def setup_user_and_branch(user = :user, branch = :master)
|
128
|
+
@helper.should_receive(:user_and_branch).any_number_of_times.and_return([user, branch])
|
129
|
+
end
|
130
|
+
|
131
|
+
def setup_url_for(remote = :origin, user = nil, project = :project)
|
132
|
+
if user.nil?
|
133
|
+
user = remote
|
134
|
+
user = "user" if remote == :origin
|
135
|
+
end
|
136
|
+
@helper.should_receive(:url_for).any_number_of_times.with(remote).and_return("git://github.com/#{user}/#{project}.git")
|
137
|
+
end
|
138
|
+
end
|