Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
casperjs
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
8c102519
...
8c102519605722d2ba92f73dd413d8502379227a
authored
2011-12-13 10:08:48 +0100
by
Nicolas Perriault
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
removed obsolete file
1 parent
a0724c97
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
20 deletions
tests/run.coffee
tests/run.coffee
deleted
100644 → 0
View file @
a0724c9
# A small subset of the run.js written in coffeescript
do
(
casper
)
->
steps
=
0
casper
.
options
.
onStepComplete
=
->
steps
++
casper
.
start
"tests/site/index.html"
,
->
@
test
.
assertTitle
"CasperJS test index"
,
"Casper.start() casper can start itself an open an url"
@
test
.
assertEquals
@
fetchText
(
"ul li"
),
"onetwothree"
,
"Casper.fetchText() can retrieves text contents"
@
click
"a[href=
\"
test.html
\"
]"
casper
.
then
->
@
test
.
assertTitle
"CasperJS test target"
,
"Casper.click() casper can click on a text link"
@
click
"a[href=
\"
form.html
\"
]"
casper
.
run
->
@
test
.
assertEquals
steps
,
3
,
"Casper.options.onStepComplete() is called on step complete"
@
options
.
onStepComplete
=
null
@
test
.
done
()
\ No newline at end of file
Please
register
or
sign in
to post a comment