aboutsummaryrefslogtreecommitdiff
path: root/src/tests/archive.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/archive.cpp')
-rw-r--r--src/tests/archive.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/tests/archive.cpp b/src/tests/archive.cpp
new file mode 100644
index 0000000..2035aa6
--- /dev/null
+++ b/src/tests/archive.cpp
@@ -0,0 +1,16 @@
1#include "archive.h"
2#include "file.h"
3
4using namespace Bu;
5
6int main()
7{
8 File f("test.dat", "wb");
9 Archive ar( f, Archive::save );
10
11 std::string s("Hello there");
12 ar << s;
13
14 return 0;
15}
16