remove: delete default template stubs
This commit is contained in:
parent
d390168198
commit
44981b881e
4 changed files with 0 additions and 36 deletions
|
@ -1,6 +0,0 @@
|
||||||
import 'package:protevus_http/protevus_http.dart';
|
|
||||||
|
|
||||||
void main() {
|
|
||||||
var awesome = Awesome();
|
|
||||||
print('awesome: ${awesome.isAwesome}');
|
|
||||||
}
|
|
|
@ -1,8 +0,0 @@
|
||||||
/// Support for doing something awesome.
|
|
||||||
///
|
|
||||||
/// More dartdocs go here.
|
|
||||||
library;
|
|
||||||
|
|
||||||
export 'src/protevus_http_base.dart';
|
|
||||||
|
|
||||||
// TODO: Export any libraries intended for clients of this package.
|
|
|
@ -1,6 +0,0 @@
|
||||||
// TODO: Put public facing types in this file.
|
|
||||||
|
|
||||||
/// Checks if you are awesome. Spoiler: you are.
|
|
||||||
class Awesome {
|
|
||||||
bool get isAwesome => true;
|
|
||||||
}
|
|
|
@ -1,16 +0,0 @@
|
||||||
import 'package:protevus_http/protevus_http.dart';
|
|
||||||
import 'package:test/test.dart';
|
|
||||||
|
|
||||||
void main() {
|
|
||||||
group('A group of tests', () {
|
|
||||||
final awesome = Awesome();
|
|
||||||
|
|
||||||
setUp(() {
|
|
||||||
// Additional setup goes here.
|
|
||||||
});
|
|
||||||
|
|
||||||
test('First Test', () {
|
|
||||||
expect(awesome.isAwesome, isTrue);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
Loading…
Reference in a new issue