Skip to content

mvcisback/hypothesis-cfg

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Early version of implementation of Hypothesis strategy for Context Free Grammars.

from hypothesis import given
from hypothesis_cfg import ContextFreeGrammarStrategy

# Production rules
GRAMMAR = {
    'P': (('P', 'P'), ('A', 'R')),
    'A': (('L', 'P'), ('(',)),
    'L': (('(',),),
    'R': ((')',),),
}

@given(ContextFreeGrammarStrategy(GRAMMAR, max_length=20, start='P'))
def test_foo(foo):
    assert len(foo) <= 20

Currently no guarantees on the distribution. TODO: cite relevant works.

About

Generate random elements of a language defined by a context free grammar.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages