File tree 2 files changed +17
-2
lines changed
2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ def build_rspec
26
26
Opal . use_gem 'rspec'
27
27
Opal . use_gem 'rspec-expectations'
28
28
29
- %w[ fileutils test/unit/assertions coderay optparse shellwords socket uri
29
+ %w[ time fileutils test/unit/assertions coderay optparse shellwords socket uri
30
30
drb/drb diff/lcs diff/lcs/hunk ] . each do |asset |
31
31
Opal ::Processor . stub_file asset
32
32
end
Original file line number Diff line number Diff line change 13
13
obj . bar . should == 42
14
14
} . to raise_error ( Exception )
15
15
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
16
31
end
17
32
18
33
describe "doubles" do
31
46
person = double ( "person" )
32
47
expect ( person ) . to receive ( :name ) . twice
33
48
person . name
34
- person . name
49
+ person . name . should
35
50
end
36
51
end
37
52
end
You can’t perform that action at this time.
0 commit comments