Exemple #1
0
    def test_old_get_new_command(self, settings):
        def get_new_command(command, _settings):
            assert command == Command()
            assert settings == _settings
            return True

        assert compatibility_call(get_new_command, Command())
Exemple #2
0
    def test_old_side_effect(self, settings):
        def side_effect(command, new_command, _settings):
            assert command == Command() == new_command
            assert settings == _settings
            return True

        assert compatibility_call(side_effect, Command(), Command())
Exemple #3
0
    def test_old_side_effect(self, settings):
        def side_effect(command, new_command, _settings):
            assert command == Command() == new_command
            assert settings == _settings
            return True

        assert compatibility_call(side_effect, Command(), Command())
Exemple #4
0
    def test_old_match(self, settings):
        def match(command, _settings):
            assert command == Command()
            assert settings == _settings
            return True

        assert compatibility_call(match, Command())
Exemple #5
0
    def test_old_get_new_command(self, settings):
        def get_new_command(command, _settings):
            assert command == Command()
            assert settings == _settings
            return True

        assert compatibility_call(get_new_command, Command())
Exemple #6
0
    def test_old_match(self, settings):
        def match(command, _settings):
            assert command == Command()
            assert settings == _settings
            return True

        assert compatibility_call(match, Command())
Exemple #7
0
    def test_old_get_new_command(self, settings):
        def get_new_command(command, _settings):
            assert command == Command()
            assert settings == _settings
            return True

        with pytest.warns(UserWarning):
            assert compatibility_call(get_new_command, Command())
Exemple #8
0
    def test_old_match(self, settings):
        def match(command, _settings):
            assert command == Command()
            assert settings == _settings
            return True

        with pytest.warns(UserWarning):
            assert compatibility_call(match, Command())
Exemple #9
0
    def test_old_get_new_command(self, settings):
        def get_new_command(command, _settings):
            assert command == Command()
            assert settings == _settings
            return True

        with pytest.warns(UserWarning):
            assert compatibility_call(get_new_command, Command())
Exemple #10
0
    def test_old_match(self, settings):
        def match(command, _settings):
            assert command == Command()
            assert settings == _settings
            return True

        with pytest.warns(UserWarning):
            assert compatibility_call(match, Command())
Exemple #11
0
    def test_side_effect(self):
        def side_effect(command, new_command):
            assert command == Command() == new_command
            return True

        assert compatibility_call(side_effect, Command(), Command())
Exemple #12
0
    def test_get_new_command(self):
        def get_new_command(command):
            assert command == Command()
            return True

        assert compatibility_call(get_new_command, Command())
Exemple #13
0
    def test_match(self):
        def match(command):
            assert command == Command()
            return True

        assert compatibility_call(match, Command())
Exemple #14
0
    def test_side_effect(self):
        def side_effect(command, new_command):
            assert command == Command() == new_command
            return True

        assert compatibility_call(side_effect, Command(), Command())
Exemple #15
0
    def test_get_new_command(self):
        def get_new_command(command):
            assert command == Command()
            return True

        assert compatibility_call(get_new_command, Command())
Exemple #16
0
    def test_match(self):
        def match(command):
            assert command == Command()
            return True

        assert compatibility_call(match, Command())