Static Page Search for Django Haystack
github.com1 pointsby dnsauve0 comments
testFoo(self):
# Do some test here.
self.assertTrue(....)
testBar(self):
# Test that Foo works for logged in user as well
self.client.login(username='joe', password='abc')
self.testFoo()
self.assertTrue(...)
This is exactly what I did when I was trying to decide between the two. It really doesn't take long to work your way through the introductory tutorials to get a feel for which framework and language you prefer.