Sha256: d2fab572eb9220e5f3dcd0a3038239ed752e160ccdbd024ee6de3375267962f6
Contents?: true
Size: 602 Bytes
Versions: 39
Compression:
Stored size: 602 Bytes
Contents
import "package:test/test.dart"; import "package:hello_world/hello_world.dart"; void main() { group("HelloWorld", () { var helloWorld = new HelloWorld(); test("should work", () { helloWorld.hello(); }); test("says hello world with no name", () { expect(helloWorld.hello(), equals("Hello, World!")); }, skip: true); test("says hello to bob", () { expect(helloWorld.hello("Bob"), equals("Hello, Bob!")); }, skip: true); test("says hello to sally", () { expect(helloWorld.hello("Sally"), equals("Hello, Sally!")); }, skip: true); }); }
Version data entries
39 entries across 39 versions & 1 rubygems