Пример #1
0
    def test_empty_action_set_should_be_empty(self):
        # Given
        actions = Actions()

        # Check
        assert actions.is_empty()
Пример #2
0
    def test_non_empty_action_set_shouldnt_be_empty(self):
        # Given
        actions = Actions("Hello")

        # Check
        assert not actions.is_empty()