|
| 1 | +var FoodChain = require('./food-chain'); |
| 2 | + |
| 3 | +describe('Food Chain', function () { |
| 4 | + var song = new FoodChain(); |
| 5 | + |
| 6 | + it('fly', function () { |
| 7 | + var expected = 'I know an old lady who swallowed a fly.\nI don\'t know why she swallowed the fly. Perhaps she\'ll die.\n'; |
| 8 | + |
| 9 | + expect(song.verse(1)).toEqual(expected); |
| 10 | + }); |
| 11 | + |
| 12 | + it('spider', function () { |
| 13 | + var expected = 'I know an old lady who swallowed a spider.\nIt wriggled and jiggled and tickled inside her.\n' + |
| 14 | + 'She swallowed the spider to catch the fly.\n' + 'I don\'t know why she swallowed the fly. Perhaps she\'ll die.\n'; |
| 15 | + |
| 16 | + expect(song.verse(2)).toEqual(expected); |
| 17 | + }); |
| 18 | + |
| 19 | + it('bird', function () { |
| 20 | + var expected = 'I know an old lady who swallowed a bird.\n' + |
| 21 | + 'How absurd to swallow a bird!\n' + |
| 22 | + 'She swallowed the bird to catch the spider that wriggled and jiggled and tickled inside her.\n' + |
| 23 | + 'She swallowed the spider to catch the fly.\n' + |
| 24 | + 'I don\'t know why she swallowed the fly. Perhaps she\'ll die.\n'; |
| 25 | + |
| 26 | + expect(song.verse(3)).toEqual(expected); |
| 27 | + }); |
| 28 | + |
| 29 | + it('cat', function () { |
| 30 | + var expected = 'I know an old lady who swallowed a cat.\n' + |
| 31 | + 'Imagine that, to swallow a cat!\n' + |
| 32 | + 'She swallowed the cat to catch the bird.\n' + |
| 33 | + 'She swallowed the bird to catch the spider that wriggled and jiggled and tickled inside her.\n' + |
| 34 | + 'She swallowed the spider to catch the fly.\n' + |
| 35 | + 'I don\'t know why she swallowed the fly. ' + |
| 36 | + 'Perhaps she\'ll die.\n'; |
| 37 | + |
| 38 | + expect(song.verse(4)).toEqual(expected); |
| 39 | + }); |
| 40 | + |
| 41 | + it('dog', function () { |
| 42 | + var expected = 'I know an old lady who swallowed a dog.\n' + |
| 43 | + 'What a hog, to swallow a dog!\n' + |
| 44 | + 'She swallowed the dog to catch the cat.\n' + |
| 45 | + 'She swallowed the cat to catch the bird.\n' + |
| 46 | + 'She swallowed the bird to catch the spider that wriggled and jiggled and tickled inside her.\n' + |
| 47 | + 'She swallowed the spider to catch the fly.\n' + |
| 48 | + 'I don\'t know why she swallowed the fly. ' + |
| 49 | + 'Perhaps she\'ll die.\n'; |
| 50 | + |
| 51 | + expect(song.verse(5)).toEqual(expected); |
| 52 | + }); |
| 53 | + |
| 54 | + it('goat', function () { |
| 55 | + var expected = 'I know an old lady who swallowed a goat.\n' + |
| 56 | + 'Just opened her throat and swallowed a goat!\n' + |
| 57 | + 'She swallowed the goat to catch the dog.\n' + |
| 58 | + 'She swallowed the dog to catch the cat.\n' + |
| 59 | + 'She swallowed the cat to catch the bird.\n' + |
| 60 | + 'She swallowed the bird to catch the spider that wriggled and jiggled and tickled inside her.\n' + |
| 61 | + 'She swallowed the spider to catch the fly.\n' + |
| 62 | + 'I don\'t know why she swallowed the fly. ' + |
| 63 | + 'Perhaps she\'ll die.\n'; |
| 64 | + |
| 65 | + expect(song.verse(6)).toEqual(expected); |
| 66 | + }); |
| 67 | + |
| 68 | + it('cow', function () { |
| 69 | + var expected = 'I know an old lady who swallowed a cow.\n' + |
| 70 | + 'I don\'t know how she swallowed a cow!\n' + |
| 71 | + 'She swallowed the cow to catch the goat.\n' + |
| 72 | + 'She swallowed the goat to catch the dog.\n' + |
| 73 | + 'She swallowed the dog to catch the cat.\n' + |
| 74 | + 'She swallowed the cat to catch the bird.\n' + |
| 75 | + 'She swallowed the bird to catch the spider that wriggled and jiggled and tickled inside her.\n' + |
| 76 | + 'She swallowed the spider to catch the fly.\n' + |
| 77 | + 'I don\'t know why she swallowed the fly. ' + |
| 78 | + 'Perhaps she\'ll die.\n'; |
| 79 | + |
| 80 | + expect(song.verse(7)).toEqual(expected); |
| 81 | + }); |
| 82 | + |
| 83 | + it('horse', function () { |
| 84 | + var expected = 'I know an old lady who swallowed a horse.\n' + 'She\'s dead, of course!\n'; |
| 85 | + |
| 86 | + expect(song.verse(8)).toEqual(expected); |
| 87 | + }); |
| 88 | + |
| 89 | + it('multiple verses', function () { |
| 90 | + var expected = ''; |
| 91 | + |
| 92 | + expected += 'I know an old lady who swallowed a fly.\nI don\'t know why she swallowed the fly. Perhaps she\'ll die.\n\n'; |
| 93 | + expected += 'I know an old lady who swallowed a spider.\nIt wriggled and jiggled and tickled inside her.\n' + |
| 94 | + 'She swallowed the spider to catch the fly.\n' + |
| 95 | + 'I don\'t know why she swallowed the fly. Perhaps she\'ll die.\n\n'; |
| 96 | + |
| 97 | + expect(song.verses(1, 2)).toEqual(expected); |
| 98 | + }); |
| 99 | + |
| 100 | + it('the whole song', function () { |
| 101 | + var expected = ''; |
| 102 | + |
| 103 | + expected += 'I know an old lady who swallowed a fly.\nI don\'t know why she swallowed the fly. Perhaps she\'ll die.\n\n'; |
| 104 | + expected += 'I know an old lady who swallowed a spider.\nIt wriggled and jiggled and tickled inside her.\n' + |
| 105 | + 'She swallowed the spider to catch the fly.\n' + |
| 106 | + 'I don\'t know why she swallowed the fly. Perhaps she\'ll die.\n\n'; |
| 107 | + expected += 'I know an old lady who swallowed a bird.\n' + |
| 108 | + 'How absurd to swallow a bird!\n' + |
| 109 | + 'She swallowed the bird to catch the spider that wriggled and jiggled and tickled inside her.\n' + |
| 110 | + 'She swallowed the spider to catch the fly.\n' + |
| 111 | + 'I don\'t know why she swallowed the fly. Perhaps she\'ll die.\n\n'; |
| 112 | + expected += 'I know an old lady who swallowed a cat.\n' + |
| 113 | + 'Imagine that, to swallow a cat!\n' + |
| 114 | + 'She swallowed the cat to catch the bird.\n' + |
| 115 | + 'She swallowed the bird to catch the spider that wriggled and jiggled and tickled inside her.\n' + |
| 116 | + 'She swallowed the spider to catch the fly.\n' + |
| 117 | + 'I don\'t know why she swallowed the fly. ' + |
| 118 | + 'Perhaps she\'ll die.\n\n'; |
| 119 | + expected += 'I know an old lady who swallowed a dog.\n' + |
| 120 | + 'What a hog, to swallow a dog!\n' + |
| 121 | + 'She swallowed the dog to catch the cat.\n' + |
| 122 | + 'She swallowed the cat to catch the bird.\n' + |
| 123 | + 'She swallowed the bird to catch the spider that wriggled and jiggled and tickled inside her.\n' + |
| 124 | + 'She swallowed the spider to catch the fly.\n' + |
| 125 | + 'I don\'t know why she swallowed the fly. ' + |
| 126 | + 'Perhaps she\'ll die.\n\n'; |
| 127 | + expected += 'I know an old lady who swallowed a goat.\n' + |
| 128 | + 'Just opened her throat and swallowed a goat!\n' + |
| 129 | + 'She swallowed the goat to catch the dog.\n' + |
| 130 | + 'She swallowed the dog to catch the cat.\n' + |
| 131 | + 'She swallowed the cat to catch the bird.\n' + |
| 132 | + 'She swallowed the bird to catch the spider that wriggled and jiggled and tickled inside her.\n' + |
| 133 | + 'She swallowed the spider to catch the fly.\n' + |
| 134 | + 'I don\'t know why she swallowed the fly. ' + |
| 135 | + 'Perhaps she\'ll die.\n\n'; |
| 136 | + expected += 'I know an old lady who swallowed a cow.\n' + |
| 137 | + 'I don\'t know how she swallowed a cow!\n' + |
| 138 | + 'She swallowed the cow to catch the goat.\n' + |
| 139 | + 'She swallowed the goat to catch the dog.\n' + |
| 140 | + 'She swallowed the dog to catch the cat.\n' + |
| 141 | + 'She swallowed the cat to catch the bird.\n' + |
| 142 | + 'She swallowed the bird to catch the spider that wriggled and jiggled and tickled inside her.\n' + |
| 143 | + 'She swallowed the spider to catch the fly.\n' + |
| 144 | + 'I don\'t know why she swallowed the fly. ' + |
| 145 | + 'Perhaps she\'ll die.\n\n'; |
| 146 | + expected += 'I know an old lady who swallowed a horse.\n' + 'She\'s dead, of course!\n\n'; |
| 147 | + |
| 148 | + expect(song.verses(1, 8)).toEqual(expected); |
| 149 | + }); |
| 150 | + |
| 151 | +}); |
0 commit comments