0
0
Fork 0
rubella/spec/unit/rubella/weighting/base/buckets_spec.rb

12 lines
225 B
Ruby

require 'spec_helper'
describe Rubella::Weighting::Base, '.buckets' do
it "returns the current amount of buckets" do
weighting = Rubella::Weighting::Base.new 20
expect(weighting.buckets).to eq(20)
end
end