diff options
-rw-r--r-- | spec/registration_spec.rb | 6 | ||||
-rw-r--r-- | views/index.erb | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/spec/registration_spec.rb b/spec/registration_spec.rb index 3111ebc..522b155 100644 --- a/spec/registration_spec.rb +++ b/spec/registration_spec.rb @@ -20,6 +20,12 @@ describe RegistrationApp do it 'displays the registration form' do expect(last_response.body).to match(/form id="registration-form"/) end + + it 'allows three songs' do + expect(last_response.body).to match(/Låt nr. 1/) + expect(last_response.body).to match(/Låt nr. 2/) + expect(last_response.body).to match(/Låt nr. 3/) + end end describe 'POST submit' do diff --git a/views/index.erb b/views/index.erb index f031838..65b8653 100644 --- a/views/index.erb +++ b/views/index.erb @@ -84,7 +84,7 @@ <h3>Låter</h3> <% @band.songs.each_index do |i| %> - <%= erb :song, layout: false, locals: { song_number: i, song: @band.songs[i] } %> + <%= erb :song, layout: false, locals: { song_number: i + 1, song: @band.songs[i] } %> <% end %> </div> |