Skip to content
Permalink
Browse files
Added func to gen PINs
  • Loading branch information
csx239 committed Oct 12, 2020
1 parent 38ab7d6 commit 019bb1ee36ad6521364e75f8defaf2869d67efc9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
@@ -18,7 +18,7 @@ def generateGuesses():
#the line below with code that can generate all the potential
#guesses

return=["000","001","002","003","004"]
return ["000","001","002","003","004"]



@@ -0,0 +1,13 @@
import pytest
import sys
sys.path.append("./src/")


#You will need to write tests for your own functions, or change tests for ones you modify

import brute_basic


def test_guessGenerator():
#This definitely needs changing and expanding
assert len(brute_basic.generateGuesses())==5

0 comments on commit 019bb1e

Please sign in to comment.