Commit fc9899fa authored by French, Robert's avatar French, Robert
Browse files

Test can load db

parent 8efcf7ac
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+3 −0
Original line number Diff line number Diff line
.venv/
*.pyc
*.swp

bin/quote_gen

0 → 100755
+3 −0
Original line number Diff line number Diff line
#!/bin/bash
source .venv/bin/activate
python -m quote_gen

bin/test.sh

0 → 100755
+3 −0
Original line number Diff line number Diff line
#!/bin/bash
source .venv/bin/activate
nosetests

fixtures/quote_db.json

0 → 100644
+5 −0
Original line number Diff line number Diff line
{
    "intros": ["Hello darkness, my old friend"],
    "bodies": [],
    "closings": []
}

quote_gen/__main__.py

0 → 100644
+1 −0
Original line number Diff line number Diff line
print("hello")
Loading