Решение на Втора задача от Стилиян Стоянов
Обратно към всички решения
Към профила на Стилиян Стоянов
Резултати
- 4 точки от тестове
- 0 бонус точки
- 4 точки общо
- 17 успешни тест(а)
- 7 неуспешни тест(а)
Код
Лог от изпълнението
................FFFFFF.F
Failures:
1) NumberSet can combine two filters with "and" rule
Failure/Error: filter = SignFilter.new(:non_negative) & Filter.new { |number| number != 0 }
NoMethodError:
undefined method `&' for #<SignFilter:0xb9368bc0 @sign=:non_negative>
# /tmp/d20141028-18133-1a741i6/spec.rb:91:in `block (2 levels) in <top (required)>'
# ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
# ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'
2) NumberSet can combine two filters with "or" rule
Failure/Error: filter = Filter.new { |number| number % 2 == 0 } | Filter.new { |number| number > 5 }
NoMethodError:
undefined method `|' for #<Filter:0xb9368044>
# /tmp/d20141028-18133-1a741i6/spec.rb:98:in `block (2 levels) in <top (required)>'
# ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
# ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'
3) NumberSet can combine multiple filters with "and" rule
Failure/Error: filter = non_negative & non_zero & mod_3_is_zero
NoMethodError:
undefined method `&' for #<SignFilter:0xb92df6f4 @sign=:non_negative>
# /tmp/d20141028-18133-1a741i6/spec.rb:108:in `block (2 levels) in <top (required)>'
# ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
# ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'
4) NumberSet can combine multiple filters with "or" rule
Failure/Error: filter = even | negative | more_than_100
NoMethodError:
undefined method `|' for #<Filter:0xb92debc8 @filter=#<Proc:0xb92dec04>>
# /tmp/d20141028-18133-1a741i6/spec.rb:118:in `block (2 levels) in <top (required)>'
# ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
# ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'
5) NumberSet can combine multiple filters with "and" and "or" rules
Failure/Error: filter = even & negative | mod_3_is_zero
NoMethodError:
undefined method `&' for #<Filter:0xb92de0b0 @filter=#<Proc:0xb92dec04>>
# /tmp/d20141028-18133-1a741i6/spec.rb:128:in `block (2 levels) in <top (required)>'
# ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
# ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'
6) NumberSet can combine multiple filters with "and", "or" and parenthesis
Failure/Error: filter = even & (negative | mod_3_is_zero)
NoMethodError:
undefined method `|' for #<SignFilter:0xb92dd584 @sign=:negative>
# /tmp/d20141028-18133-1a741i6/spec.rb:138:in `block (2 levels) in <top (required)>'
# ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
# ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'
7) NumberSet returns enumerable of set's contents if no block is given to each
Failure/Error: expect(numbers.each.to_a.size).to eq [1, 3, 5].size
LocalJumpError:
no block given (yield)
# /tmp/d20141028-18133-1a741i6/solution.rb:15:in `block in each'
# /tmp/d20141028-18133-1a741i6/solution.rb:15:in `each'
# /tmp/d20141028-18133-1a741i6/solution.rb:15:in `each'
# /tmp/d20141028-18133-1a741i6/spec.rb:164:in `block (2 levels) in <top (required)>'
# ./lib/language/ruby/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
# ./lib/language/ruby/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'
Finished in 0.02104 seconds
24 examples, 7 failures
Failed examples:
rspec /tmp/d20141028-18133-1a741i6/spec.rb:90 # NumberSet can combine two filters with "and" rule
rspec /tmp/d20141028-18133-1a741i6/spec.rb:97 # NumberSet can combine two filters with "or" rule
rspec /tmp/d20141028-18133-1a741i6/spec.rb:104 # NumberSet can combine multiple filters with "and" rule
rspec /tmp/d20141028-18133-1a741i6/spec.rb:114 # NumberSet can combine multiple filters with "or" rule
rspec /tmp/d20141028-18133-1a741i6/spec.rb:124 # NumberSet can combine multiple filters with "and" and "or" rules
rspec /tmp/d20141028-18133-1a741i6/spec.rb:134 # NumberSet can combine multiple filters with "and", "or" and parenthesis
rspec /tmp/d20141028-18133-1a741i6/spec.rb:159 # NumberSet returns enumerable of set's contents if no block is given to each
История (4 версии и 2 коментара)
Стилиян обнови решението на 27.10.2014 02:44 (преди около 10 години)
Стилиян обнови решението на 27.10.2014 11:46 (преди около 10 години)
Стилиян обнови решението на 27.10.2014 14:07 (преди около 10 години)
Стилиян обнови решението на 27.10.2014 16:54 (преди около 10 години)