successfully ported everything to a flesh shabti template. shortnames work now,...
[zzz-floof.git] / floof / tests / functional / test_elixir.py
diff --git a/floof/tests/functional/test_elixir.py b/floof/tests/functional/test_elixir.py
new file mode 100644 (file)
index 0000000..bd0228b
--- /dev/null
@@ -0,0 +1,13 @@
+from floof.tests import *
+from floof.tests import Session, metadata
+
+class TestElixir(TestModel):
+    def setUp(self):
+        TestModel.setUp(self)
+
+    def test_metadata(self):
+        assert 'A collection of Tables and their associated schema constructs.' in metadata.__doc__
+
+    def test_session(self):
+        assert Session.connection().dialect.name is 'sqlite'
+