-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding sessionstorage for free and some tests
- Loading branch information
1 parent
7ae80df
commit b651c1d
Showing
5 changed files
with
26 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import 'package:unittest/unittest.dart'; | ||
import 'package:cargo/cargo_client.dart'; | ||
|
||
void main() { | ||
// First tests! | ||
Cargo storage = new Cargo(MODE: CargoMode.MEMORY); | ||
|
||
storage.start().then((_) { | ||
test('test basic memory storage', () { | ||
storage.setItem("data", {"data": "data"}); | ||
|
||
var data = storage.getItemSync("data"); | ||
expect(data["data"], "data"); | ||
expect(storage.length(), 1); | ||
}); | ||
}); | ||
} | ||
|