Cleaned up item view.
[straw.git] / test / TestSQLiteStorage.py
blob7f8b1796b67c47f662e41d7b63e93e02d8d14197
1 import nose
3 from straw.storage import SQLiteStorage as storage
5 class TestSQLiteStorage:
6 def testInit(self):
7 db = storage.SQLiteStorage("./test/sqlite.db")
9 def testQuery(self):
10 db = storage.SQLiteStorage("./test/sqlite.db")
11 print db.query("SELECT * FROM feeds")