-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
made no parenthesis the default convention for anonymous functions wi…
…th no parameters.
- Loading branch information
1 parent
8204189
commit c09a14e
Showing
16 changed files
with
104 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
describe('Some testing', @() { | ||
it('should match exactly!', @() { | ||
describe('Some testing', @{ | ||
it('should match exactly!', @{ | ||
expect(3).to_be(3) | ||
expect(5).to_be(5) | ||
expect(5).not().to_be(56) | ||
|
||
class X {} | ||
|
||
var b = [] | ||
expect(@() { return b[5] }).not().to_throw(X) | ||
expect(@{ return b[5] }).not().to_throw(X) | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
describe('Some testing', @() { | ||
it('should match exactly!', @() { | ||
describe('Some testing', @{ | ||
it('should match exactly!', @{ | ||
expect(3).to_be(3) | ||
expect(5).to_be(5) | ||
|
||
class X {} | ||
|
||
var b = [] | ||
expect(@() { return b[5] }).to_throw() | ||
expect(@{ return b[5] }).to_throw() | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
import ..setup | ||
|
||
describe('Importing', @() { | ||
it('should have a valid command', @() { | ||
describe('Importing', @{ | ||
it('should have a valid command', @{ | ||
expect(setup.cmd).to_be_string() | ||
}) | ||
it('should have a correct file path', @() { | ||
it('should have a correct file path', @{ | ||
expect(setup.path).to_contain('qi') | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.