Skip to content

Commit

Permalink
add more case in test and pump v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dungngminh committed Dec 14, 2024
1 parent 33d2b12 commit 6848ae6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.2

- Update LICENSE

## 1.0.1

- Fix some docs
Expand Down
3 changes: 2 additions & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name: dart_gsheet_remote_config
description: Remote config for Dart/Flutter and use Google Sheets to do that
version: 1.0.1
version: 1.0.2
repository: https://github.com/dungngminh/dart_gsheet_remote_config
issue_tracker: https://github.com/dungngminh/dart_gsheet_remote_config/issues

environment:
sdk: ">=3.0.0 <4.0.0"
Expand Down
6 changes: 6 additions & 0 deletions test/sheet_remote_config_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ void main() {
expect(config.getBool('key2'), true);
expect(config.getDouble('key3'), 1.0);
expect(config.getInt('key4'), 100);
expect(config.getAll(), {
'key1': 'value1',
'key2': 'true',
'key3': '1.0',
'key4': '100',
});
});

test('throws exception when request fails', () async {
Expand Down

0 comments on commit 6848ae6

Please sign in to comment.