| Index: client/tests/client/dom/StorageTest.dart
|
| diff --git a/client/tests/client/dom/StorageTest.dart b/client/tests/client/dom/StorageTest.dart
|
| deleted file mode 100644
|
| index 864248167896f83ae10421ddc67734910f259701..0000000000000000000000000000000000000000
|
| --- a/client/tests/client/dom/StorageTest.dart
|
| +++ /dev/null
|
| @@ -1,19 +0,0 @@
|
| -#library('StorageTest');
|
| -#import('../../../../lib/unittest/unittest.dart');
|
| -#import('../../../../lib/unittest/dom_config.dart');
|
| -#import('dart:dom');
|
| -
|
| -main() {
|
| - useDomConfiguration();
|
| - test('GetItem', () {
|
| - final value = window.localStorage.getItem('does not exist');
|
| - Expect.isNull(value);
|
| - });
|
| - test('SetItem', () {
|
| - final key = 'foo';
|
| - final value = 'bar';
|
| - window.localStorage.setItem(key, value);
|
| - final stored = window.localStorage.getItem(key);
|
| - Expect.equals(value, stored);
|
| - });
|
| -}
|
|
|