Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
rename bridge class to t::Bridge (like Perl 5)
so t/ doesn't need to be in @*INC.
  • Loading branch information
ingydotnet committed Jul 21, 2010
1 parent 31c2866 commit 1275e50
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion t/Bridge.pm
@@ -1,6 +1,6 @@
use v6;

module Bridge;
module t::Bridge;

our sub uppercase($this) {
return $this.value.uc;
Expand Down
2 changes: 1 addition & 1 deletion t/arguments.t
Expand Up @@ -2,5 +2,5 @@ use TestML::Runner::TAP;

TestML::Runner::TAP.new(
document => 'testml-tml/arguments.tml',
bridge => 'Bridge',
bridge => 't::Bridge',
).run();
2 changes: 1 addition & 1 deletion t/basic.t
Expand Up @@ -2,5 +2,5 @@ use TestML::Runner::TAP;

TestML::Runner::TAP.new(
document => 'testml-tml/basic.tml',
bridge => 'Bridge',
bridge => 't::Bridge',
).run();
2 changes: 1 addition & 1 deletion t/error.t
Expand Up @@ -2,5 +2,5 @@ use TestML::Runner::TAP;

TestML::Runner::TAP.new(
document => 'testml-tml/error.tml',
bridge => 'Bridge',
bridge => 't::Bridge',
).run();
2 changes: 1 addition & 1 deletion t/no-data.t
Expand Up @@ -2,5 +2,5 @@ use TestML::Runner::TAP;

TestML::Runner::TAP.new(
document => 'testml-tml/no-data.tml',
bridge => 'Bridge',
bridge => 't::Bridge',
).run();
2 changes: 1 addition & 1 deletion t/t1.t
Expand Up @@ -2,5 +2,5 @@ use TestML::Runner::TAP;

TestML::Runner::TAP.new(
document => 't1.tml',
bridge => 'Bridge',
bridge => 't::Bridge',
).run();

0 comments on commit 1275e50

Please sign in to comment.