Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
aa187956
Commit
aa187956
authored
Jun 07, 2014
by
take_cheeze
Committed by
Yukihiro "Matz" Matsumoto
Jun 08, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add test for end-of-program marker.
parent
d75b8401
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
mrbgems/mruby-bin-mruby/bintest/mruby.rb
mrbgems/mruby-bin-mruby/bintest/mruby.rb
+14
-0
No files found.
mrbgems/mruby-bin-mruby/bintest/mruby.rb
View file @
aa187956
...
@@ -30,3 +30,17 @@ assert '$0 value' do
...
@@ -30,3 +30,17 @@ assert '$0 value' do
# one liner
# one liner
assert_equal
'"-e"'
,
`./bin/mruby -e 'p $0'`
.
chomp
assert_equal
'"-e"'
,
`./bin/mruby -e 'p $0'`
.
chomp
end
end
assert
'__END__'
,
'8.6'
do
script
=
Tempfile
.
new
(
'test.rb'
)
script
.
write
<<
EOS
p 'test'
__END__ = 'fin'
p __END__
__END__
p 'legend'
EOS
script
.
flush
assert_equal
"
\"
test
\"\n\"
fin
\"\n
"
,
`./bin/mruby
#{
script
.
path
}
`
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment