Решение на Втора задача от Никола Генешки
Обратно към всички решения
Към профила на Никола Генешки
Резултати
- 0 точки от тестове
- 0 бонус точки
- 0 точки общо
- 0 успешни тест(а)
- 11 неуспешни тест(а)
Код
Лог от изпълнението
FFFFFFFFFFF
Failures:
1) Collection can find all the artists in the collection
Failure/Error: collection.artists.should =~ [
NoMethodError:
undefined method `artists' for #<Array:0x9db1b78>
# /tmp/d20130203-23049-hzr3w7/spec.rb:5:in `block (2 levels) in <top (required)>'
# ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
# ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'
2) Collection can find all the names of all songs in the collection
Failure/Error: collection.names.should =~ [
NoMethodError:
undefined method `names' for #<Array:0x9dc860c>
# /tmp/d20130203-23049-hzr3w7/spec.rb:17:in `block (2 levels) in <top (required)>'
# ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
# ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'
3) Collection can find all the albums in the collection
Failure/Error: collection.albums.should =~ [
NoMethodError:
undefined method `albums' for #<Array:0x9dcf600>
# /tmp/d20130203-23049-hzr3w7/spec.rb:30:in `block (2 levels) in <top (required)>'
# ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
# ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'
4) Collection can be filtered by song name
Failure/Error: filtered = collection.filter Criteria.name('Fields of Gold')
NoMethodError:
undefined method `filter' for #<Array:0x9dd92cc>
# /tmp/d20130203-23049-hzr3w7/spec.rb:44:in `block (2 levels) in <top (required)>'
# ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
# ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'
5) Collection can be filtered by song name
Failure/Error: filtered = collection.filter Criteria.artist('Sting')
NoMethodError:
undefined method `filter' for #<Array:0x9ddaab4>
# /tmp/d20130203-23049-hzr3w7/spec.rb:49:in `block (2 levels) in <top (required)>'
# ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
# ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'
6) Collection can be filtered by album
Failure/Error: filtered = collection.filter Criteria.album('Live at Blues Alley')
NoMethodError:
undefined method `filter' for #<Array:0x9de7250>
# /tmp/d20130203-23049-hzr3w7/spec.rb:54:in `block (2 levels) in <top (required)>'
# ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
# ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'
7) Collection can return an empty result
Failure/Error: filtered = collection.filter Criteria.album('The Dark Side of the Moon')
NoMethodError:
undefined method `filter' for #<Array:0x9dff710>
# /tmp/d20130203-23049-hzr3w7/spec.rb:59:in `block (2 levels) in <top (required)>'
# ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
# ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'
8) Collection supports a conjuction of filters
Failure/Error: filtered = collection.filter Criteria.artist('Sting') & Criteria.name('Fields of Gold')
KeyError:
key not found: :name
# /tmp/d20130203-23049-hzr3w7/solution.rb:125:in `fetch'
# /tmp/d20130203-23049-hzr3w7/solution.rb:125:in `block in &'
# /tmp/d20130203-23049-hzr3w7/solution.rb:125:in `each'
# /tmp/d20130203-23049-hzr3w7/solution.rb:125:in `&'
# /tmp/d20130203-23049-hzr3w7/spec.rb:64:in `block (2 levels) in <top (required)>'
# ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
# ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'
9) Collection supports a disjunction of filters
Failure/Error: filtered = collection.filter Criteria.artist('Sting') | Criteria.name('Fields of Gold')
KeyError:
key not found: :name
# /tmp/d20130203-23049-hzr3w7/solution.rb:119:in `fetch'
# /tmp/d20130203-23049-hzr3w7/solution.rb:119:in `block in |'
# /tmp/d20130203-23049-hzr3w7/solution.rb:118:in `each'
# /tmp/d20130203-23049-hzr3w7/solution.rb:118:in `|'
# /tmp/d20130203-23049-hzr3w7/spec.rb:69:in `block (2 levels) in <top (required)>'
# ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
# ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'
10) Collection supports negation of filters
Failure/Error: filtered = collection.filter Criteria.artist('Sting') & !Criteria.name('Fields of Gold')
KeyError:
key not found: :name
# /tmp/d20130203-23049-hzr3w7/solution.rb:126:in `fetch'
# /tmp/d20130203-23049-hzr3w7/solution.rb:126:in `block in &'
# /tmp/d20130203-23049-hzr3w7/solution.rb:126:in `each'
# /tmp/d20130203-23049-hzr3w7/solution.rb:126:in `&'
# /tmp/d20130203-23049-hzr3w7/spec.rb:78:in `block (2 levels) in <top (required)>'
# ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
# ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'
11) Collection can be adjoined with another collection
Failure/Error: sting = collection.filter Criteria.artist('Sting')
NoMethodError:
undefined method `filter' for #<Array:0x9e1b3d4>
# /tmp/d20130203-23049-hzr3w7/spec.rb:83:in `block (2 levels) in <top (required)>'
# ./lib/homework/run_with_timeout.rb:5:in `block (3 levels) in <top (required)>'
# ./lib/homework/run_with_timeout.rb:5:in `block (2 levels) in <top (required)>'
Finished in 0.00869 seconds
11 examples, 11 failures
Failed examples:
rspec /tmp/d20130203-23049-hzr3w7/spec.rb:4 # Collection can find all the artists in the collection
rspec /tmp/d20130203-23049-hzr3w7/spec.rb:16 # Collection can find all the names of all songs in the collection
rspec /tmp/d20130203-23049-hzr3w7/spec.rb:29 # Collection can find all the albums in the collection
rspec /tmp/d20130203-23049-hzr3w7/spec.rb:43 # Collection can be filtered by song name
rspec /tmp/d20130203-23049-hzr3w7/spec.rb:48 # Collection can be filtered by song name
rspec /tmp/d20130203-23049-hzr3w7/spec.rb:53 # Collection can be filtered by album
rspec /tmp/d20130203-23049-hzr3w7/spec.rb:58 # Collection can return an empty result
rspec /tmp/d20130203-23049-hzr3w7/spec.rb:63 # Collection supports a conjuction of filters
rspec /tmp/d20130203-23049-hzr3w7/spec.rb:68 # Collection supports a disjunction of filters
rspec /tmp/d20130203-23049-hzr3w7/spec.rb:77 # Collection supports negation of filters
rspec /tmp/d20130203-23049-hzr3w7/spec.rb:82 # Collection can be adjoined with another collection
История (1 версия и 0 коментара)
Никола обнови решението на 31.10.2012 16:35 (преди около 12 години)