spec/lib/backends/backend_spec.rb in picky-4.17.1 vs spec/lib/backends/backend_spec.rb in picky-4.18.0
- old
+ new
@@ -2,18 +2,18 @@
describe Picky::Backends::Backend do
let(:backend) { described_class.new }
- describe 'weight' do
- it 'forwards to the parameter' do
- combinations = stub :combinations
-
- combinations.should_receive(:score).once.with()
-
- backend.weight combinations
- end
- end
+ # describe 'score' do
+ # it 'forwards to the parameter' do
+ # combinations = stub :combinations
+ #
+ # combinations.should_receive(:score).once.with()
+ #
+ # backend.score combinations
+ # end
+ # end
describe 'to_s' do
it 'is correct' do
backend.to_s.should == 'Picky::Backends::Backend'
end
\ No newline at end of file