Skip to content

Gauge-Python 0.2.2

Pre-release
Pre-release
Compare
Choose a tag to compare
@kashishm kashishm released this 21 Sep 11:00
· 371 commits to master since this release
e4b1bf6
  • Shows suggestion for validation errors.
Suggestions for fixing `Duplicate step implementation` errors.

Multiple implementations found for `Vowels in English language are <arg>.`
step_impl/step_impl.py:9
@step("Vowels in English language are <vowels>.")
def assert_default_vowels(given_vowels):
   ...

step_impl/step_impl.py:20
@step("Vowels in English language are <vowels>.")
def assert_default_vowels1(given_vowels):
   ...

Add the following missing implementations to fix `Step implementation not found` errors.

@step("Almost all words have vowels <table>")
def almost_all_words_have_vowels(table):
    assert False, "Add implementation code"