Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to address PonyTest package being renamed #220

Merged
merged 1 commit into from
Feb 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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