Skip to content

Commit

Permalink
add script test
Browse files Browse the repository at this point in the history
  • Loading branch information
jbukhari committed May 13, 2024
1 parent 2c324b6 commit 4180876
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package/module.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

class Class():
def __init__():
def __init__(self):
return

def hello_world():
def hello_world(self):
return 'hello world'
4 changes: 4 additions & 0 deletions package/tests/test_scripts.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from package.scripts import script

def test_script():
script.run()

0 comments on commit 4180876

Please sign in to comment.