summaryrefslogtreecommitdiff
path: root/libodb/tests/basics/driver.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2024-01-24 17:03:38 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2024-01-24 17:03:38 +0300
commit0f1f6841ce5a50d5b315c24d796a2d8e2627d136 (patch)
treee16bbf9e23ca75a88b8af032c4e3ed299ca8db66 /libodb/tests/basics/driver.cxx
parent823026b58211a4166de06ac243d978dcb9930271 (diff)
parent26e36b3a9d7b49d46ecfa69b447482251acba8ac (diff)
Merge branch 'libodb' into multi-package
Diffstat (limited to 'libodb/tests/basics/driver.cxx')
-rw-r--r--libodb/tests/basics/driver.cxx29
1 files changed, 29 insertions, 0 deletions
diff --git a/libodb/tests/basics/driver.cxx b/libodb/tests/basics/driver.cxx
new file mode 100644
index 0000000..57cec1c
--- /dev/null
+++ b/libodb/tests/basics/driver.cxx
@@ -0,0 +1,29 @@
+// file : tests/basics/driver.cxx
+// license : GNU GPL v2; see accompanying LICENSE file
+
+// Basic test to make sure the library is usable. Functionality testing
+// is done in the odb-tests package.
+
+#include <cassert>
+
+#include <odb/exceptions.hxx>
+#include <odb/transaction.hxx>
+
+using namespace odb;
+
+int
+main ()
+{
+ // Transaction.
+ //
+ {
+ assert (!transaction::has_current ());
+
+ try
+ {
+ transaction::current ();
+ assert(false);
+ }
+ catch (const not_in_transaction&) {}
+ }
+}