Skip to content

Commit

Permalink
Move Bridge1 to Bridge.
Browse files Browse the repository at this point in the history
  • Loading branch information
ingydotnet committed Jul 11, 2010
1 parent dddfd15 commit fd053b5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion t/Bridge1.pm → t/Bridge.pm
@@ -1,6 +1,6 @@
use v6;

module Bridge1;
module Bridge;

our sub uppercase($this) {
return $this.value.uc;
Expand All @@ -10,3 +10,7 @@ our sub my_thing($this) {
my $str = $this.value.=subst(/\n$/, "");
return $str.split("\n").join(' - ');
}

our sub combine($this, $suffix) {
return $this.value ~ ' ' ~ $suffix.value;
}
2 changes: 1 addition & 1 deletion t/basic.t
Expand Up @@ -3,5 +3,5 @@ use TestML::Runner::TAP;

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

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

0 comments on commit fd053b5

Please sign in to comment.