feat: adjusted tests

pull/119/head
alestiago 4 years ago
parent 2f8f3e9145
commit a4afae8a78

@ -136,9 +136,16 @@ void main() {
}); });
group('SmallDashNestBumper', () { group('SmallDashNestBumper', () {
test('has points', () { group('has points', () {
final dashNestBumper = SmallDashNestBumper(id: ''); test('when a', () {
final dashNestBumper = SmallDashNestBumper.a(id: '');
expect(dashNestBumper.points, greaterThan(0)); expect(dashNestBumper.points, greaterThan(0));
}); });
test('when b', () {
final dashNestBumper = SmallDashNestBumper.b(id: '');
expect(dashNestBumper.points, greaterThan(0));
});
});
}); });
} }

Loading…
Cancel
Save