Skip to content

Commit

Permalink
Clean up some formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanTAllen committed Mar 1, 2022
1 parent b8337e3 commit c033449
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions packages/pony_check/_test.pony
Original file line number Diff line number Diff line change
Expand Up @@ -270,28 +270,24 @@ class \nodoc\ iso _SuccessfulProperty4Test is UnitTest
runner.run()

class \nodoc\ iso _RunnerAsyncPropertyCompleteTest is UnitTest

fun name(): String => "property_runner/async/complete"

fun apply(h: TestHelper) =>
_Async.run_async_test(h, {(ph) => ph.complete(true) }, true)

class \nodoc\ iso _RunnerAsyncPropertyCompleteFalseTest is UnitTest

fun name(): String => "property_runner/async/complete-false"

fun apply(h: TestHelper) =>
_Async.run_async_test(h,{(ph) => ph.complete(false) }, false)

class \nodoc\ iso _RunnerAsyncFailTest is UnitTest

fun name(): String => "property_runner/async/fail"

fun apply(h: TestHelper) =>
_Async.run_async_test(h, {(ph) => ph.fail("Oh noes!") }, false)

class \nodoc\ iso _RunnerAsyncMultiCompleteSucceedTest is UnitTest

fun name(): String => "property_runner/async/multi_succeed"

fun apply(h: TestHelper) =>
Expand All @@ -314,7 +310,6 @@ class \nodoc\ iso _RunnerAsyncMultiCompleteFailTest is UnitTest
}, false)

class \nodoc\ iso _RunnerAsyncCompleteActionTest is UnitTest

fun name(): String => "property_runner/async/complete_action"

fun apply(h: TestHelper) =>
Expand All @@ -328,7 +323,6 @@ class \nodoc\ iso _RunnerAsyncCompleteActionTest is UnitTest
true)

class \nodoc\ iso _RunnerAsyncCompleteFalseActionTest is UnitTest

fun name(): String => "property_runner/async/complete_action"

fun apply(h: TestHelper) =>
Expand All @@ -341,7 +335,6 @@ class \nodoc\ iso _RunnerAsyncCompleteFalseActionTest is UnitTest
}, false)

class \nodoc\ iso _RunnerAsyncCompleteMultiActionTest is UnitTest

fun name(): String => "property_runner/async/complete_multi_action"

fun apply(h: TestHelper) =>
Expand All @@ -356,7 +349,6 @@ class \nodoc\ iso _RunnerAsyncCompleteMultiActionTest is UnitTest
false)

class \nodoc\ iso _RunnerAsyncCompleteMultiSucceedActionTest is UnitTest

fun name(): String => "property_runner/async/complete_multi_fail_action"

fun apply(h: TestHelper) =>
Expand Down

0 comments on commit c033449

Please sign in to comment.