Searching for one tag works. Two tags acts like or and returns multiple copies.
[zzz-floof.git] / floof / tests / functional / test_elixir.py
1 from floof.tests import *
2 from floof.tests import Session, metadata
3
4 class TestElixir(TestModel):
5 def setUp(self):
6 TestModel.setUp(self)
7
8 def test_metadata(self):
9 assert 'A collection of Tables and their associated schema constructs.' in metadata.__doc__
10
11 def test_session(self):
12 assert Session.connection().dialect.name is 'sqlite'
13