Skip to content

Commit

Permalink
Update to address PonyTest package being renamed (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanTAllen authored Feb 26, 2022
1 parent 092ef7f commit e9a9a99
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 13 deletions.
3 changes: 3 additions & 0 deletions .release-notes/ponytest.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Update to work with ponytest name change in Pony 0.49.0

The Pony unit testing framework PonyTest had [its package name renamed](https://github.com/ponylang/ponyc/pull/4032) from `ponytest` to `pony_test` to match standard library naming conventions. We've updated to account for the new name.
2 changes: 1 addition & 1 deletion corral/cmd/_test.pony
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use "ponytest"
use "pony_test"

actor Main is TestList
new create(env: Env) =>
Expand Down
2 changes: 1 addition & 1 deletion corral/cmd/_test_cmd_update.pony
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use "files"
use "../logger"
use "ponytest"
use "pony_test"
use "../bundle"
use "../util"
use "../vcs"
Expand Down
2 changes: 1 addition & 1 deletion corral/logger/_test.pony
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use "ponytest"
use "pony_test"
use "promises"

actor \nodoc\ Main is TestList
Expand Down
2 changes: 1 addition & 1 deletion corral/test/_test.pony
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use "ponytest"
use "pony_test"
use "files"
use integration = "integration"
use cmd = "../cmd"
Expand Down
2 changes: 1 addition & 1 deletion corral/test/integration/test_clean.pony
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use "files"
use "ponytest"
use "pony_test"
use ".."
use "../../util"

Expand Down
2 changes: 1 addition & 1 deletion corral/test/integration/test_help.pony
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use "ponytest"
use "pony_test"
use ".."
use "../../util"

Expand Down
2 changes: 1 addition & 1 deletion corral/test/integration/test_info.pony
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use "files"
use "ponytest"
use "pony_test"
use ".."
use "../../util"

Expand Down
2 changes: 1 addition & 1 deletion corral/test/integration/test_run.pony
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use "files"
use "ponytest"
use "pony_test"
use ".."
use "../../util"

Expand Down
2 changes: 1 addition & 1 deletion corral/test/integration/test_update.pony
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use "files"
use "ponytest"
use "pony_test"
use ".."
use "../../util"

Expand Down
2 changes: 1 addition & 1 deletion corral/test/integration/test_version.pony
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use "ponytest"
use "pony_test"
use ".."
use "../.."
use "../../util"
Expand Down
2 changes: 1 addition & 1 deletion corral/test/test_bundle.pony
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use "files"
use "../logger"
use "ponytest"
use "pony_test"
use "../bundle"
use "../util"

Expand Down
2 changes: 1 addition & 1 deletion corral/test/test_git.pony
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use "ponytest"
use "pony_test"
use "../vcs"
use "../util"

Expand Down
2 changes: 1 addition & 1 deletion corral/test/util.pony
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use "cli"
use "files"
use "strings"
use "ponytest"
use "pony_test"
use "../util"


Expand Down

0 comments on commit e9a9a99

Please sign in to comment.