summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Eilertsen <haraldei@anduin.net>2015-11-01 15:55:50 +0100
committerHarald Eilertsen <haraldei@anduin.net>2015-11-01 15:55:50 +0100
commit57a52a31486ec9af415d6d5b86a20a4a62abf488 (patch)
tree2140f42c77202e72b38506bb27c956e5053bb15e
parentf8474216b3c4aa9aad4db2b275fe7d26bd42d074 (diff)
downloadnorsk-urskog-registrations-57a52a31486ec9af415d6d5b86a20a4a62abf488.tar.gz
norsk-urskog-registrations-57a52a31486ec9af415d6d5b86a20a4a62abf488.tar.bz2
norsk-urskog-registrations-57a52a31486ec9af415d6d5b86a20a4a62abf488.zip
Fix numbering of song forms.
-rw-r--r--spec/registration_spec.rb6
-rw-r--r--views/index.erb2
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>