diff options
| author | Mike Buland <eichlan@xagasoft.com> | 2010-05-15 07:44:10 +0000 |
|---|---|---|
| committer | Mike Buland <eichlan@xagasoft.com> | 2010-05-15 07:44:10 +0000 |
| commit | 306b80c1cf9ab490a83b36d3e7cf07e09f9e5d68 (patch) | |
| tree | 32c35f8507edb4ea403f4ebc4b625c1096f6f384 /src/unit/xml.unit | |
| parent | 11413d228bae2919fe69c83b74c7ff49209dd65a (diff) | |
| download | libbu++-306b80c1cf9ab490a83b36d3e7cf07e09f9e5d68.tar.gz libbu++-306b80c1cf9ab490a83b36d3e7cf07e09f9e5d68.tar.bz2 libbu++-306b80c1cf9ab490a83b36d3e7cf07e09f9e5d68.tar.xz libbu++-306b80c1cf9ab490a83b36d3e7cf07e09f9e5d68.zip | |
mkunit.sh was a little dumb, it didn't handle a number of things correctly.
I've written a new program that basically does the same thing, only it's much
more clever, and does many more of the translations and conversions better,
including the #line directives. Also, I dropped nids, we don't need it anymore.
But now I'm ready to write some serious tests for myriad.
Diffstat (limited to 'src/unit/xml.unit')
| -rw-r--r-- | src/unit/xml.unit | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/unit/xml.unit b/src/unit/xml.unit index 1398237..67216f0 100644 --- a/src/unit/xml.unit +++ b/src/unit/xml.unit | |||
| @@ -10,11 +10,12 @@ | |||
| 10 | #include "bu/xmlreader.h" | 10 | #include "bu/xmlreader.h" |
| 11 | #include "bu/membuf.h" | 11 | #include "bu/membuf.h" |
| 12 | 12 | ||
| 13 | {=Init} | 13 | suite Xml |
| 14 | |||
| 15 | {%declaration} | ||
| 16 | { | 14 | { |
| 17 | Bu::FString sXml("<?xml ?> <hi />"); | 15 | test declaration |
| 18 | Bu::MemBuf buf( sXml ); | 16 | { |
| 19 | Bu::XmlReader xr( buf ); | 17 | Bu::FString sXml("<?xml ?> <hi />"); |
| 18 | Bu::MemBuf buf( sXml ); | ||
| 19 | Bu::XmlReader xr( buf ); | ||
| 20 | } | ||
| 20 | } | 21 | } |
