From 3dbc92a776423737e675f97fc96610d3518638b1 Mon Sep 17 00:00:00 2001 From: Ryan Potts Date: Tue, 10 Jan 2017 15:22:03 -0500 Subject: [PATCH] Update hello world (#49) * Exercise: saddle-points (#46) * Config json (#48) (#2) * Exercise: saddle-points (#46) * Changed "Language" value Changed it to Object Pascal from Pascal. Curious to see if that affects the language listing. * implemented Ignores --- exercises/hello-world/uTestHelloWorld.pas | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/exercises/hello-world/uTestHelloWorld.pas b/exercises/hello-world/uTestHelloWorld.pas index f5f41f5e..20920a74 100644 --- a/exercises/hello-world/uTestHelloWorld.pas +++ b/exercises/hello-world/uTestHelloWorld.pas @@ -9,13 +9,12 @@ interface HelloWorldTest = class(TObject) public [Test] -// [Ignore] procedure test_no_name; [Test] -// [Ignore] + [Ignore('Comment this line to run this test')] procedure test_sample_name; [Test] -// [Ignore] + [Ignore('Comment this line to run this test')] procedure test_other_sample_name; end;