james 0.0.8-universal-darwin-10 → 0.0.9-universal-darwin-10
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/james/visitors.rb +1 -1
- data/spec/lib/james/visitors_spec.rb +1 -1
- metadata +1 -1
data/lib/james/visitors.rb
CHANGED
@@ -50,7 +50,7 @@ describe James::Visitors do
|
|
50
50
|
first.stub! :expects => [:a, :b], :chainable? => true
|
51
51
|
second.stub! :expects => [:c, :d, :e], :chainable? => true
|
52
52
|
end
|
53
|
-
it { visitors.expects.should == [:
|
53
|
+
it { visitors.expects.should == [:c, :d, :e, :a, :b] }
|
54
54
|
end
|
55
55
|
context 'not chainable' do
|
56
56
|
before(:each) do
|