Skip to content

Commit 1e158d3

Browse files
committedNov 10, 2013
Add some extra specs for mocking and stubbing
1 parent 1b38065 commit 1e158d3

File tree

2 files changed

+17
-2
lines changed

2 files changed

+17
-2
lines changed
 

‎Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def build_rspec
2626
Opal.use_gem 'rspec'
2727
Opal.use_gem 'rspec-expectations'
2828

29-
%w[fileutils test/unit/assertions coderay optparse shellwords socket uri
29+
%w[time fileutils test/unit/assertions coderay optparse shellwords socket uri
3030
drb/drb diff/lcs diff/lcs/hunk].each do |asset|
3131
Opal::Processor.stub_file asset
3232
end

‎spec/mock_spec.rb

+16-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,21 @@
1313
obj.bar.should == 42
1414
}.to raise_error(Exception)
1515
end
16+
17+
it "allow" do
18+
obj = Object.new
19+
allow(obj).to receive(:name) { "Adam B" }
20+
allow(obj).to receive(:job).and_return("Eating Fruit Gums")
21+
22+
expect(obj.name).to eq("Adam B")
23+
expect(obj.job).to eq("Eating Fruit Gums")
24+
end
25+
26+
it "expecting arguments" do
27+
person = double("person")
28+
expect(person).to receive(:foo).with(4, 5, 6)
29+
person.foo(4, 5, 6)
30+
end
1631
end
1732

1833
describe "doubles" do
@@ -31,7 +46,7 @@
3146
person = double("person")
3247
expect(person).to receive(:name).twice
3348
person.name
34-
person.name
49+
person.name.should
3550
end
3651
end
3752
end

0 commit comments

Comments
 (0)
Please sign in to comment.