From 2c8c227493509175fcdbcba3e6a85f8b954a169e Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sat, 15 Jan 2022 12:10:26 -0500 Subject: init --- test/system/players_test.rb | 47 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 test/system/players_test.rb (limited to 'test/system/players_test.rb') diff --git a/test/system/players_test.rb b/test/system/players_test.rb new file mode 100644 index 0000000..b00910c --- /dev/null +++ b/test/system/players_test.rb @@ -0,0 +1,47 @@ +# frozen_string_literal: true + +require 'application_system_test_case' + +class PlayersTest < ApplicationSystemTestCase + setup do + @player = players(:one) + end + + test 'visiting the index' do + visit players_url + assert_selector 'h1', text: 'Players' + end + + test 'should create player' do + visit players_url + click_on 'New player' + + fill_in 'Name', with: @player.name + check 'Paid' if @player.paid + fill_in 'Strikes', with: @player.strikes + click_on 'Create Player' + + assert_text 'Player was successfully created' + click_on 'Back' + end + + test 'should update Player' do + visit player_url(@player) + click_on 'Edit this player', match: :first + + fill_in 'Name', with: @player.name + check 'Paid' if @player.paid + fill_in 'Strikes', with: @player.strikes + click_on 'Update Player' + + assert_text 'Player was successfully updated' + click_on 'Back' + end + + test 'should destroy Player' do + visit player_url(@player) + click_on 'Destroy this player', match: :first + + assert_text 'Player was successfully destroyed' + end +end -- cgit 1.4.1