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
95456d33
...
95456d33385b10ec7c6af0853fd2419b5158dd7f
authored
2013-02-14 00:12:38 -0500
by
Oleg Pudeyev
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Close package.json after using it
1 parent
661c77ec
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
bin/casperjs
bin/casperjs
View file @
95456d3
...
...
@@ -47,7 +47,8 @@ SYS_ARGS = sys.argv[1:]
if
len
(
SYS_ARGS
)
and
SYS_ARGS
[
0
]
==
'__selfcommandtest'
:
print
(
'Starting Python executable tests...'
)
pkg_version
=
json
.
loads
(
open
(
'package.json'
)
.
read
())
.
get
(
'version'
)
with
open
(
'package.json'
)
as
f
:
pkg_version
=
json
.
load
(
f
)
.
get
(
'version'
)
scripts_path
=
os
.
path
.
join
(
CASPER_PATH
,
'tests'
,
'commands'
)
assert
(
test_cmd
(
'--help'
)
.
find
(
pkg_version
)
>
-
1
)
assert
(
test_cmd
(
'--version'
)
.
strip
()
==
pkg_version
)
...
...
Please
register
or
sign in
to post a comment