firm 1.1.2 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,8 +0,0 @@
1
-
2
- require 'test/unit'
3
- require 'test/unit/ui/console/testrunner'
4
- require_relative './serializer_tests'
5
-
6
- class SerializeTests < Test::Unit::TestCase
7
- include SerializerTestMixin
8
- end
@@ -1,22 +0,0 @@
1
-
2
- require 'test/unit'
3
- require 'test/unit/ui/console/testrunner'
4
- require_relative './serializer_tests'
5
-
6
- if ::Object.const_defined?(:Nokogiri)
7
-
8
- class XMLSerializeTests < Test::Unit::TestCase
9
-
10
- include SerializerTestMixin
11
-
12
- def self.startup
13
- FIRM::Serializable.default_format = :xml
14
- end
15
-
16
- def self.shutdown
17
- FIRM::Serializable.default_format = nil
18
- end
19
-
20
- end
21
-
22
- end
@@ -1,18 +0,0 @@
1
-
2
- require 'test/unit'
3
- require 'test/unit/ui/console/testrunner'
4
- require_relative './serializer_tests'
5
-
6
- class YamlSerializeTests < Test::Unit::TestCase
7
-
8
- include SerializerTestMixin
9
-
10
- def self.startup
11
- FIRM::Serializable.default_format = :yaml
12
- end
13
-
14
- def self.shutdown
15
- FIRM::Serializable.default_format = nil
16
- end
17
-
18
- end