forked from LBRYCommunity/lbry-sdk
8 lines
143 B
Dart
8 lines
143 B
Dart
import 'package:lbry/lbry.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
void main() {
|
|
test('calculate', () {
|
|
expect(calculate(), 42);
|
|
});
|
|
}
|