faster_path 0.0.2

Alternative to Pathname
Documentation
1
2
3
4
5
6
7
8
9
10
describe :queue_enq, shared: true do
  it "adds an element to the Queue" do
    q = @object
    q.size.should == 0
    q.send(@method, Object.new)
    q.size.should == 1
    q.send(@method, Object.new)
    q.size.should == 2
  end
end