Chromium Code Reviews| Index: pkg/serialization/test/no_library_test.dart |
| diff --git a/pkg/serialization/test/no_library_test.dart b/pkg/serialization/test/no_library_test.dart |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..72ae6bc8832edff1b118161cac88d936e1cad2f4 |
| --- /dev/null |
| +++ b/pkg/serialization/test/no_library_test.dart |
| @@ -0,0 +1,22 @@ |
| +// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
|
Jennifer Messerly
2013/03/21 00:32:38
2013
Alan Knight
2013/03/21 20:39:25
Done.
|
| +// for details. All rights reserved. Use of this source code is governed by a |
| +// BSD-style license that can be found in the LICENSE file. |
| + |
| +import 'package:serialization/serialization.dart'; |
| +import 'package:unittest/unittest.dart'; |
| + |
| +class Thing { |
| + var name; |
| +} |
| + |
| +void main() { |
| + |
| + test("Serializing something without a library directive", () { |
| + var thing = new Thing()..name = 'testThing'; |
| + var s = new Serialization() |
| + ..addRuleFor(thing); |
| + var serialized = s.write(thing); |
| + var newThing = s.read(serialized); |
| + expect(thing.name, newThing.name); |
| + }); |
| +} |