summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-bin-mruby/bintest/mruby.rb
blob: a453400fccec6a08987473e6314afe85c7f2e167 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
require 'tempfile'

assert('regression for #1564') do
  o = `bin/mruby -e '<<' 2>&1`
  assert_equal o, "-e:1:2: syntax error, unexpected tLSHFT\n"
  o = `bin/mruby -e '<<-' 2>&1`
  assert_equal o, "-e:1:3: syntax error, unexpected tLSHFT\n"
end

assert('regression for #1572') do
  script, bin = Tempfile.new('test.rb'), Tempfile.new('test.mrb')
  system "echo 'p \"ok\"' > #{script.path}"
  system "bin/mrbc -g -o #{bin.path} #{script.path}"
  o = `bin/mruby -b #{bin.path}`.strip
  assert_equal o, '"ok"'
end

assert '$0 value' do
  script, bin = Tempfile.new('test.rb'), Tempfile.new('test.mrb')

  # .rb script
  script.write "p $0\n"
  script.flush
  assert_equal "\"#{script.path}\"", `./bin/mruby "#{script.path}"`.chomp

  # .mrb file
  `./bin/mrbc -o "#{bin.path}" "#{script.path}"`
  assert_equal "\"#{bin.path}\"", `./bin/mruby -b "#{bin.path}"`.chomp

  # one liner
  assert_equal '"-e"', `./bin/mruby -e 'p $0'`.chomp
end