Skip to content

Commit

Permalink
changed test to honor missing () for bang plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
weepy committed Mar 17, 2011
1 parent 81e7468 commit 6807098
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions expectations/bang
Expand Up @@ -34,7 +34,7 @@ function() {

compiles:
function() {
create!()
create!
//x
}

Expand All @@ -49,7 +49,7 @@ function() {
compiles:
x = null
function() {
create!()
create!
x = 10
}

Expand All @@ -64,7 +64,7 @@ function() {
compiles:
x = null
function() {
create!()
create!
@x = 10
}

Expand All @@ -78,7 +78,7 @@ function() {

compiles:
function() {
x, y = get!()
x, y = get!
alert(x)
}

Expand All @@ -90,7 +90,7 @@ function() {

compiles:
function() {
x, y = get!()
x, y = get!
}

to:
Expand All @@ -100,7 +100,7 @@ function() {

compiles:
function() {
x = get!().length
x = get!.length
}

to:
Expand Down

0 comments on commit 6807098

Please sign in to comment.