summaryrefslogtreecommitdiff
path: root/test/relaxng/choice0.rng
diff options
context:
space:
mode:
Diffstat (limited to 'test/relaxng/choice0.rng')
-rw-r--r--test/relaxng/choice0.rng25
1 files changed, 0 insertions, 25 deletions
diff --git a/test/relaxng/choice0.rng b/test/relaxng/choice0.rng
deleted file mode 100644
index 99526e1..0000000
--- a/test/relaxng/choice0.rng
+++ /dev/null
@@ -1,25 +0,0 @@
-<?xml version="1.0"?>
-<element xmlns="http://relaxng.org/ns/structure/1.0" name="device">
- <choice>
- <group>
- <attribute name="link">
- <value>ethernet</value>
- </attribute>
- <optional>
- <element name="ethernet-element">
- <text/>
- </element>
- </optional>
- </group>
- <group>
- <attribute name="link">
- <value>serial</value>
- </attribute>
- <optional>
- <element name="serial-element">
- <text/>
- </element>
- </optional>
- </group>
- </choice>
-</element>