def test_post_normal(self, model_results):
        # Setup
        mock_model = Mock()
        mock_model.register_win = Mock()
        model_results.return_value = mock_model

        data = {
            'tournament': '999',
            'winner_id': 1,
            'loser_id': 2
        }

        # Preconditions

        # Run the test
        post(None, data)

        # Postconditions
        mock_model.register_win.assert_called_with(data['winner_id'], data['loser_id'])